File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -231,10 +231,14 @@ jobs:
231231 max_attempts : 3
232232 command : npx playwright install --with-deps
233233 - name : Run Playwright Tests
234- run : |
235- curl -s -o $NODE_EXTRA_CA_CERTS https://letsencrypt.org/certs/staging/letsencrypt-stg-root-x1.pem
236- curl -s -o playwright.config.ts https://raw.githubusercontent.com/opencrvs/e2e/refs/heads/k8s-integration/playwright.config.ts
237- npx playwright test ./e2e/testcases/${{ matrix.test_file }}
234+ uses : nick-fields/retry@v3
235+ with :
236+ timeout_minutes : 10
237+ max_attempts : 2
238+ command : |
239+ curl -s -o $NODE_EXTRA_CA_CERTS https://letsencrypt.org/certs/staging/letsencrypt-stg-root-x1.pem;
240+ curl -s -o playwright.config.ts https://raw.githubusercontent.com/opencrvs/e2e/refs/heads/k8s-integration/playwright.config.ts;
241+ npx playwright test ./e2e/testcases/${{ matrix.test_file }}
238242 env :
239243 DOMAIN : ' ${{ needs.debug.outputs.domain }}'
240244 # Allow e2e playwright API call for Lets encrypt staging SSL Certificate
You can’t perform that action at this time.
0 commit comments