Skip to content

Commit 4be73b0

Browse files
committed
fix: forgot the github action
1 parent be43741 commit 4be73b0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/main.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v3
10+
uses: actions/checkout@v4
1111

12-
- name: Setup Node.js
13-
uses: actions/setup-node@v3
14-
with:
15-
node-version: '18.x'
12+
- name: Setup Bun
13+
uses: oven-sh/setup-bun@v2
1614

1715
- name: Install dependencies
18-
run: npm install
16+
run: bun install
1917

2018
- name: Unit Tests
2119
run: npm run test
20+
21+
- name: Build
22+
run: npm run build

0 commit comments

Comments
 (0)