Skip to content

Commit 34ddee8

Browse files
committed
decrease parallel runs number
1 parent bd50200 commit 34ddee8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests-e2e-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
# Number of threads to run tests
40-
parallel: [0, 1, 2, 3, 4, 5]
40+
parallel: [0, 1, 2, 3]
4141

4242
steps:
4343
- uses: actions/checkout@v4
@@ -66,7 +66,7 @@ jobs:
6666
- name: Generate short list of the test files
6767
working-directory: ./tests/e2e
6868
run: |
69-
testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 6 == ${{ matrix.parallel }}")
69+
testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
7070
7171
echo $testFiles
7272

0 commit comments

Comments
 (0)