Skip to content

Commit 82a94ac

Browse files
committed
use bun in ci
1 parent 735a713 commit 82a94ac

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,13 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15-
16-
- name: Use Node.js
17-
uses: actions/setup-node@v4
18-
with:
19-
node-version: '22'
15+
- uses: oven-sh/setup-bun@v2
2016

2117
- name: Install dependencies
22-
run: 'npm ci'
18+
run: 'bun install'
2319

2420
- name: Run lint
25-
run: 'npm run lint'
21+
run: 'bun run lint'
2622

2723
- name: Run build
28-
run: 'npm run build'
24+
run: 'bun run build'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules/
33
pnpm-lock.yaml
44
package-lock.json
55
yarn.lock
6+
bun.lock
67

78
# Build output
89
dist/

0 commit comments

Comments
 (0)