From 3037d175e919aaadaf02d80caaff8303522bddee Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Mon, 9 Feb 2026 08:49:15 -0700 Subject: [PATCH] Reduce CI workers to 1 and disable video recording in CI Single worker avoids auth rate limiting. Video recording disabled in CI to reduce overhead. --- e2e/playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index 9a59e52..fad77d9 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -11,7 +11,7 @@ export default defineConfig({ fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 1 : 0, - workers: process.env.CI ? 2 : 4, + workers: process.env.CI ? 1 : 4, timeout: process.env.CI ? 60 * 1000 : 45 * 1000, expect: { timeout: process.env.CI ? 10 * 1000 : 8 * 1000, @@ -21,7 +21,7 @@ export default defineConfig({ testIdAttribute: 'data-test-selector', trace: 'on-first-retry', screenshot: 'only-on-failure', - video: 'retain-on-failure', + video: process.env.CI ? 'off' : 'retain-on-failure', actionTimeout: process.env.CI ? 15 * 1000 : 10 * 1000, navigationTimeout: process.env.CI ? 30 * 1000 : 20 * 1000, },