Skip to content

Commit

Permalink
ci(quantic): run playwright and cypress concurrently (#4879)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprudhomme authored Jan 20, 2025
1 parent 5d907b1 commit c3de3be
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e-quantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
spec: ${{ matrix.spec }}
e2e-quantic-playwright-test:
name: 'Run Playwright e2e tests on Quantic'
needs: e2e-quantic-cypress-test
needs: e2e-quantic-setup
runs-on: ubuntu-latest
steps:
- name: Harden Runner
Expand All @@ -62,7 +62,9 @@ jobs:
- uses: ./.github/actions/e2e-quantic-playwright
e2e-quantic-cleanup:
if: cancelled() || failure() || success()
needs: e2e-quantic-playwright-test
needs:
- e2e-quantic-playwright-test
- e2e-quantic-cypress-test
runs-on: ubuntu-latest
steps:
- name: Harden Runner
Expand Down

0 comments on commit c3de3be

Please sign in to comment.