Skip to content

Commit c7d9618

Browse files
committed
fix(ci): use bun in web workflow
1 parent 3847035 commit c7d9618

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/web.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ jobs:
2525
uses: actions/setup-node@v5
2626
with:
2727
node-version: 18
28-
cache: npm
29-
cache-dependency-path: '**/package-lock.json'
30-
- run: npm ci
28+
- name: Use Bun
29+
uses: oven-sh/setup-bun@v2
30+
with:
31+
bun-version: 1.3.10
32+
- run: bun install --frozen-lockfile
3133
working-directory: web
32-
- run: npm run lint
34+
- run: bun run lint
3335
working-directory: web
34-
- run: npm run build --if-present
36+
- run: bun run build
3537
working-directory: web
36-
- run: npm run e2e:headless
38+
- run: bun run e2e:headless
3739
working-directory: web

0 commit comments

Comments
 (0)