Skip to content

Commit 884136a

Browse files
committed
use playwright
1 parent f3bdcfe commit 884136a

File tree

4 files changed

+1447
-216
lines changed

4 files changed

+1447
-216
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,12 @@ jobs:
5454
node-version: ${{ matrix.node }}
5555
cache: 'npm'
5656
- run: npm install
57+
- name: Get installed Playwright version
58+
id: playwright-version
59+
run: echo "version=$(cat node_modules/playwright/package.json | jq -r .version)" >> "$GITHUB_OUTPUT"
60+
- uses: actions/cache@v4
61+
with:
62+
path: ~/.cache/ms-playwright
63+
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
64+
restore-keys: ${{ runner.os }}-playwright-
5765
- run: npm run e2e

e2e/03-browser/vite.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default defineConfig({
66
reporters: process.env['GITHUB_ACTIONS'] ? ['default', 'github-actions'] : 'default',
77
browser: {
88
enabled: true,
9-
name: 'chrome',
9+
provider: 'playwright',
10+
name: 'chromium',
1011
headless: true,
1112
},
1213
},

0 commit comments

Comments
 (0)