Skip to content

Commit cd456e1

Browse files
committed
remove parallel limit from e2e runners
1 parent c90174c commit cd456e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy-and-e2e.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ jobs:
177177
runs-on: ubuntu-24.04
178178
environment: ${{ github.event.client_payload.stack || inputs.stack }}
179179
strategy:
180-
max-parallel: 15
181180
fail-fast: false
182181
matrix:
183182
test_file: ${{ fromJson(needs.discover-tests.outputs.test_matrix) }}
@@ -223,11 +222,14 @@ jobs:
223222
timeout_minutes: 10
224223
max_attempts: 2
225224
command: |
225+
curl -s -o playwright.config.ts https://raw.githubusercontent.com/opencrvs/e2e/refs/heads/k8s-integration/playwright.config.ts;
226226
export NODE_EXTRA_CA_CERTS=/tmp/letsencrypt-stg-root-x1.pem
227227
curl -s -o $NODE_EXTRA_CA_CERTS https://letsencrypt.org/certs/staging/letsencrypt-stg-root-x1.pem;
228228
npx playwright test ./e2e/testcases/${{ matrix.test_file }}
229229
env:
230230
DOMAIN: '${{ needs.debug.outputs.domain }}'
231+
# TODO: remove this variable on Jul 30 2025, check Farajaland latest fix
232+
IGNORE_CA: '1'
231233
- id: ctrf_check
232234
if: always()
233235
run: |

0 commit comments

Comments
 (0)