Skip to content

Commit f7bbcad

Browse files
committed
ci(vscode): be less aggressive in CI
- run fewer parrallel jobs
1 parent a94c4f0 commit f7bbcad

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)