Skip to content

Commit 03c161c

Browse files
authored
ci(vscode): be less aggressive in CI (#5053)
1 parent 074df62 commit 03c161c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode/extension/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineConfig({
55
timeout: 60_000,
66
// TODO: When stable, allow retries in CI
77
retries: process.env.CI ? 2 : 0,
8-
workers: 4,
8+
workers: process.env.CI ? 2 : 4,
99
reporter: [['html', { outputFolder: 'playwright-report' }], ['list']],
1010
projects: [
1111
{

0 commit comments

Comments
 (0)