Skip to content

Commit

Permalink
Retrying e2e browser install step (#8337)
Browse files Browse the repository at this point in the history
  • Loading branch information
fungairino authored Apr 24, 2024
1 parent 4b82755 commit 30b58e0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,17 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Install playwright browsers
run: npx playwright install chromium chrome msedge
uses: Wandalen/[email protected]
with:
command: npx playwright install chrome msedge
with: |
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
# Installing msedge is flaky due to failed checksums from the Microsoft CDN. Unclear why this happens.
# Retry every 15 seconds, for up to 10 minutes
attempt_delay: 15000
attempt_limit: 40
- name: Build the extension
run: npm run build:webpack
- name: Run end to end tests
Expand Down

0 comments on commit 30b58e0

Please sign in to comment.