Skip to content

Commit 95536c1

Browse files
committed
fix: build issue
1 parent 0e01614 commit 95536c1

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,14 @@ jobs:
1010

1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
14-
15-
- name: Setup Node.js
16-
uses: actions/setup-node@v3
17-
with:
18-
node-version: 20
13+
uses: actions/checkout@v4
1914

2015
- name: Install packages
21-
uses: bahmutov/npm-install@v1
16+
uses: oven-sh/setup-bun@v2
17+
run: bun install
2218

2319
- name: Run build
24-
run: npm run build
20+
run: bun run build
2521

2622
- name: Run tests
27-
run: npm run test
23+
run: bun run test

0 commit comments

Comments
 (0)