-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retrying e2e browser install step (#8337)
- Loading branch information
1 parent
4b82755
commit 30b58e0
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|