Skip to content

Commit

Permalink
ci: retry firefox integ tests on push and set timeout to 30 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Oct 3, 2023
1 parent 6368e2e commit bd9f9aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/playwright-firefox-integ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
- name: Run Playwright integration tests in firefox Attempt 2
if: steps.attempt1.outcome == 'failure'
id: attempt2
continue-on-error: true
run: npm run testIntegFirefox

- uses: actions/upload-artifact@v3
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/playwright-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ jobs:
- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Run Playwright integration tests in Firefox
- name: Run Playwright integration tests in firefox Attempt 1
timeout-minutes: 30
id: attempt1
continue-on-error: true
run: npm run testIntegFirefox

- name: Run Playwright integration tests in firefox Attempt 2
if: steps.attempt1.outcome == 'failure'
id: attempt2
run: npm run testIntegFirefox

testChromiumUnit:
Expand Down

0 comments on commit bd9f9aa

Please sign in to comment.