Skip to content

Commit 50fb345

Browse files
committed
ci: use bun instead of npm for faster builds
1 parent 5388b70 commit 50fb345

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,14 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24-
- name: Setup Node.js
25-
uses: actions/setup-node@v4
26-
with:
27-
node-version: '20'
28-
cache: 'npm'
24+
- name: Setup Bun
25+
uses: oven-sh/setup-bun@v2
2926

3027
- name: Install dependencies
31-
run: npm ci
28+
run: bun install
3229

3330
- name: Build
34-
run: npm run build
31+
run: bun run build
3532

3633
- name: Setup Pages
3734
uses: actions/configure-pages@v4

0 commit comments

Comments
 (0)