@@ -125,16 +125,10 @@ jobs:
125
125
key : turbo-cache-${{ runner.os }}-${{ matrix.target }}-${{ env.main_sha }}
126
126
restore-keys : |
127
127
turbo-cache-${{ runner.os }}-${{ matrix.target }}
128
- - if : runner.os == 'Windows'
129
- name : Set concurrency on Windows
130
- run : echo "task_concurrency=3" >> $env:GITHUB_ENV
131
- - if : runner.os == 'Linux'
132
- name : Set concurrency on Linux
133
- run : echo "task_concurrency=5" >> $GITHUB_ENV
134
128
- name : Install dependencies
135
129
run : pnpm install
136
130
- name : Run ${{ matrix.target }} task
137
- run : pnpm run ${{ matrix.target }} --concurrency=${{ env.task_concurrency }} ${{ env.since_flag }}
131
+ run : pnpm run ${{ matrix.target }} --concurrency=1 ${{ env.since_flag }}
138
132
env :
139
133
# Limit memory to avoid out of memory issues
140
134
NODE_OPTIONS : " --max-old-space-size=5120 --max_old_space_size=5120"
@@ -211,10 +205,7 @@ jobs:
211
205
env :
212
206
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
213
207
run : >-
214
- node ./automation/run-e2e/bin/run-e2e-in-chunks.mjs
215
- --chunks ${{ matrix.chunks }}
216
- --index ${{ matrix.index }}
217
- --event-name ${{ github.event_name }}
208
+ node ./automation/run-e2e/bin/run-e2e-in-chunks.mjs --chunks ${{ matrix.chunks }} --index ${{ matrix.index }} --event-name ${{ github.event_name }}
218
209
- name : Check file existence
219
210
id : check_files
220
211
uses : andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
0 commit comments