diff --git a/.github/workflows/tests-e2e-docker.yml b/.github/workflows/tests-e2e-docker.yml index cdc22c733f..9d4f0ee1a0 100644 --- a/.github/workflows/tests-e2e-docker.yml +++ b/.github/workflows/tests-e2e-docker.yml @@ -37,7 +37,7 @@ jobs: fail-fast: false matrix: # Number of threads to run tests - parallel: [0, 1, 2, 3, 4, 5] + parallel: [0, 1, 2, 3] steps: - uses: actions/checkout@v4 @@ -66,7 +66,7 @@ jobs: - name: Generate short list of the test files working-directory: ./tests/e2e run: | - testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 6 == ${{ matrix.parallel }}") + testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 4 == ${{ matrix.parallel }}") echo $testFiles