Skip to content

Commit 957ec65

Browse files
committed
Switch from npm to bun
1 parent f48eb99 commit 957ec65

2 files changed

Lines changed: 586 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- name: Setup Node.js
21-
uses: actions/setup-node@v4
22-
with:
23-
node-version: 20
20+
- name: Setup Bun
21+
uses: oven-sh/setup-bun@v2
2422

2523
- name: Install dependencies
26-
run: npm install
24+
run: bun install
2725

2826
- name: Build
29-
run: npm run build
27+
run: bun run build
3028

3129
- name: Test
32-
run: npm test
30+
run: bun run test

0 commit comments

Comments
 (0)