chore: update CI workers to improve test concurrency
All checks were successful
Playwright Tests / test (pull_request) Successful in 2m3s

This commit is contained in:
Jan Gleytenhoover 2025-01-17 14:29:31 +01:00
parent d6f68afd64
commit 421740910e
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -20,7 +20,7 @@ export default defineConfig({
/* Retry on CI only */ /* Retry on CI only */
retries: process.env.CI ? 2 : 0, retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */ /* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined, workers: process.env.CI ? 8 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */ /* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html', reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */