mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Retry e2e tests if they fail
This commit is contained in:
parent
c0040f8423
commit
f87f5b59af
1 changed files with 8 additions and 3 deletions
7
.github/workflows/e2e.yml
vendored
7
.github/workflows/e2e.yml
vendored
|
@ -10,6 +10,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
timeout-minutes: 120
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -56,10 +57,14 @@ jobs:
|
||||||
choco install firefox-dev --pre
|
choco install firefox-dev --pre
|
||||||
echo "::add-path::C:\Program Files\Firefox Dev Edition"
|
echo "::add-path::C:\Program Files\Firefox Dev Edition"
|
||||||
- name: Test (Firefox)
|
- name: Test (Firefox)
|
||||||
|
uses: nick-invision/retry@v1
|
||||||
if: matrix.browser != 'chrome'
|
if: matrix.browser != 'chrome'
|
||||||
env:
|
env:
|
||||||
HEADLESS: 1
|
HEADLESS: 1
|
||||||
run: |
|
with:
|
||||||
|
max_attempts: 6
|
||||||
|
timeout_minutes: 10
|
||||||
|
command: |
|
||||||
yarn make-zip
|
yarn make-zip
|
||||||
yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest
|
yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest || yarn jest
|
||||||
# - name: Test (Chrome, Linux)
|
# - name: Test (Chrome, Linux)
|
||||||
|
|
Loading…
Add table
Reference in a new issue