From fa85535312495687b36e68d5d85d4495addaa5f1 Mon Sep 17 00:00:00 2001 From: Declan Carroll Date: Wed, 22 Oct 2025 09:40:04 +0100 Subject: [PATCH] ci: Reduce workers to 2 (#21035) --- .github/workflows/playwright-test-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright-test-reusable.yml b/.github/workflows/playwright-test-reusable.yml index 343b6f6a87b..f85688cc94d 100644 --- a/.github/workflows/playwright-test-reusable.yml +++ b/.github/workflows/playwright-test-reusable.yml @@ -44,7 +44,7 @@ env: NODE_OPTIONS: --max-old-space-size=3072 # Disable Ryuk to avoid issues with Docker since it needs privileged access, containers are cleaned on teardown anyway TESTCONTAINERS_RYUK_DISABLED: true - PLAYWRIGHT_WORKERS: ${{ inputs.workers || (inputs.test-mode == 'docker-pull' && '2' || '3') }} # Configurable workers, defaults: 1 for docker-pull, 3 for others + PLAYWRIGHT_WORKERS: ${{ inputs.workers || '2' }} # Configurable workers, defaults to 2 to reduce resource contention jobs: test: