We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ee92c commit 99c82eaCopy full SHA for 99c82ea
1 file changed
.github/workflows/ci.yaml
@@ -20,11 +20,16 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- - name: Setup
24
- uses: ./.github/actions/setup-node-pnpm-install
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
25
+ with:
26
+ bun-version: latest
27
+
28
+ - name: Install dependencies
29
+ run: bun install
30
31
- name: Install Playwright browsers
- run: npx playwright install --with-deps
32
+ run: bun x playwright install --with-deps
33
34
- name: Verify
- run: pnpm verify
35
+ run: bun run verify
0 commit comments