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 ea55b4f commit c239f1fCopy full SHA for c239f1f
.github/workflows/validate.yml
@@ -20,7 +20,7 @@ jobs:
20
- uses: pnpm/action-setup@v3
21
22
- name: Set up Node.js
23
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
24
with:
25
node-version: ${{ matrix.node }}
26
node-version-file: ${{ matrix.node == '' && '.nvmrc' || '' }}
playwright.config.ts
@@ -14,6 +14,8 @@ const config: PlaywrightTestConfig = defineConfig({
14
},
15
16
workers: process.env.CI ? cpus().length : undefined,
17
+ retries: process.env.CI ? 2 : 0,
18
+ forbidOnly: !!process.env.CI,
19
snapshotDir: 'tests/e2e/snapshots',
// put all snapshots in one directory
// https://playwright.dev/docs/api/class-testconfig#test-config-snapshot-path-template
0 commit comments