Skip to content

Commit

Permalink
Tests: Add Chrome version to smoke tests workflow (#2826)
Browse files Browse the repository at this point in the history
* Add ability to use single Chrome version
* Increase retry attempts
  • Loading branch information
mike10ca authored Nov 22, 2023
1 parent 8a216e0 commit 76484af
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: browser-actions/setup-chrome@v1

- uses: ./.github/workflows/yarn

- name: Install Cypress
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: browser-actions/setup-chrome@v1

- uses: ./.github/workflows/yarn

- name: Install Cypress
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/safe-apps-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: browser-actions/setup-chrome@v1

- uses: ./.github/workflows/yarn

- name: Install Cypress
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ jobs:
e2e:
runs-on: ubuntu-20.04
name: Cypress Smoke tests

strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4, 5]

steps:
- uses: actions/checkout@v3

- uses: browser-actions/setup-chrome@v1

- uses: ./.github/workflows/yarn

- name: Install Cypress
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
trashAssetsBeforeRuns: true,

retries: {
runMode: 1,
runMode: 2,
openMode: 0,
},
e2e: {
Expand Down

0 comments on commit 76484af

Please sign in to comment.