diff --git a/.github/workflows/e2e-reusable.yml b/.github/workflows/e2e-reusable.yml index 25f0354d4c..d4d4027a4c 100644 --- a/.github/workflows/e2e-reusable.yml +++ b/.github/workflows/e2e-reusable.yml @@ -30,7 +30,7 @@ on: containers: description: 'Number of containers to run tests in.' required: false - default: '[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]' + default: '[1, 2, 3, 4, 5, 6, 7, 8, 9]' type: string pr_number: description: 'PR number to run tests for.' diff --git a/.github/workflows/playwright-test-reusable.yml b/.github/workflows/playwright-test-reusable.yml index a0b1277829..99ac63f8d8 100644 --- a/.github/workflows/playwright-test-reusable.yml +++ b/.github/workflows/playwright-test-reusable.yml @@ -16,7 +16,7 @@ on: shards: description: 'Shards for parallel execution' required: false - default: '[1, 2]' + default: '[1, 2, 3, 4]' type: string docker-image: description: 'Docker image to use (for docker-pull mode)' @@ -47,7 +47,7 @@ jobs: strategy: fail-fast: false matrix: - shard: ${{ fromJSON(inputs.shards || '[1, 2]') }} + shard: ${{ fromJSON(inputs.shards || '[1, 2, 3, 4]') }} name: Test (Shard ${{ matrix.shard }}/${{ strategy.job-total }}) steps: