We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de13502 commit b5e8d34Copy full SHA for b5e8d34
.github/workflows/tests-e2e-docker.yml
@@ -45,7 +45,7 @@ jobs:
45
fail-fast: false
46
matrix:
47
# Number of threads to run tests
48
- parallel: [0, 1, 2]
+ parallel: [0, 1, 2, 3]
49
50
steps:
51
- uses: actions/checkout@v4
@@ -73,7 +73,7 @@ jobs:
73
- name: Generate short list of the test files
74
working-directory: ./tests/e2e
75
run: |
76
- testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 3 == ${{ matrix.parallel }}")
+ testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
77
echo $testFiles
78
79
# Multi-Line value
0 commit comments