Skip to content

Commit

Permalink
ci: add retry e2e tests (#1929)
Browse files Browse the repository at this point in the history
* ci: add retry e2e tests

* choose action

* increase attempt limit

---------

Co-authored-by: Miroslav Bajtoš <[email protected]>
  • Loading branch information
juliangruber and bajtos authored Nov 27, 2024
1 parent 2980191 commit ad95f85
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,17 @@ jobs:
run: npm run test:ui

- name: Test end-to-end (Linux)
run: xvfb-run -a npm run test:e2e
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: Wandalen/[email protected]
with:
command: xvfb-run -a npm run test:e2e
attempt_limit: 10
- name: Test end-to-end (Windows / macOS)
run: npm run test:e2e
if: ${{ matrix.os != 'ubuntu-latest' }}
uses: Wandalen/[email protected]
with:
command: npm run test:e2e
attempt_limit: 10

- name: Lint
run: npm run lint
Expand Down

0 comments on commit ad95f85

Please sign in to comment.