Skip to content

Commit

Permalink
Update workflow to enable tests run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
mike10ca committed Nov 2, 2023
1 parent 23fe875 commit 085b109
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ concurrency:
jobs:
e2e:
runs-on: ubuntu-20.04
name: Smoke E2E tests
name: Cypress Smoke tests
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3]
steps:
- uses: actions/checkout@v3

Expand All @@ -30,9 +34,12 @@ jobs:

- uses: cypress-io/github-action@v4
with:
parallel: true
spec: cypress/e2e/smoke/*.cy.js
browser: chrome
record: true
config: baseUrl=http://localhost:8080
grou: 'Smoke tests'
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 085b109

Please sign in to comment.