Skip to content

Commit f144141

Browse files
committed
ci: 👷 Added Github Action for Bun
1 parent 4907d80 commit f144141

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/bun.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Build with Bun, an alternative to Node.js and NPM.
2+
3+
name: bun-types
4+
5+
on:
6+
push:
7+
branches: [bun]
8+
pull_request:
9+
branches: [bun]
10+
11+
jobs:
12+
build:
13+
name: build-app
14+
runs-on: windows-latest
15+
steps:
16+
- name: Checkout repo
17+
uses: actions/checkout@v4
18+
- name: Install bun
19+
uses: oven-sh/setup-bun@v1
20+
with:
21+
bun-version: latest
22+
- name: Install dependencies
23+
run: bun install
24+
- name: test
25+
run: bun run test
26+
- name: Build app
27+
run: bun run build

0 commit comments

Comments
 (0)