From e96ed433feac459506288b468fa8788621c83df1 Mon Sep 17 00:00:00 2001 From: Yunus M Date: Sun, 27 Jul 2025 16:59:17 +0530 Subject: [PATCH] chore: update e2e github action and playwright config (#8624) * chore: update e2e github action and playwright config * chore: update e2e github action and playwright config --- frontend/playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index c7ba2f18e45e..88ee733baa1b 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -24,8 +24,8 @@ export default defineConfig({ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, - /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, + /* Run tests in parallel even in CI - optimized for GitHub Actions free tier */ + workers: process.env.CI ? 2 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */