Skip to content

Commit 99c82ea

Browse files
committed
fix(ci): migrate CI workflow to Bun
1 parent c7ee92c commit 99c82ea

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- name: Setup
24-
uses: ./.github/actions/setup-node-pnpm-install
23+
- name: Setup Bun
24+
uses: oven-sh/setup-bun@v2
25+
with:
26+
bun-version: latest
27+
28+
- name: Install dependencies
29+
run: bun install
2530

2631
- name: Install Playwright browsers
27-
run: npx playwright install --with-deps
32+
run: bun x playwright install --with-deps
2833

2934
- name: Verify
30-
run: pnpm verify
35+
run: bun run verify

0 commit comments

Comments
 (0)