Skip to content

Commit f43a28f

Browse files
committed
migrate to bun
1 parent d5f380c commit f43a28f

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v4
2121

22-
- name: Setup Node
23-
uses: actions/setup-node@v4
22+
- name: Setup Bun
23+
uses: oven-sh/setup-bun@v2
2424
with:
25-
node-version: 20
26-
cache: npm
25+
bun-version: latest
2726

2827
- name: Install dependencies
29-
run: npm ci
28+
run: bun install --frozen-lockfile
3029

3130
- name: Build
32-
run: npm run build
31+
run: bun run build
3332

3433
- name: Sync build artifacts to deploy path
3534
run: |

0 commit comments

Comments
 (0)