Skip to content

Commit

Permalink
chore: Move chrome tests off of browserstack, add firefox (#1369)
Browse files Browse the repository at this point in the history
* Move chrome tests off of browserstack

* Fix

* Fix

* Add firefox

* Fix
  • Loading branch information
robbie-c authored Aug 20, 2024
1 parent 3ea2bf2 commit 57c3b46
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/testcafe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,19 @@ jobs:

strategy:
matrix:
browserstack:
- chrome
- ie
- safari
browser:
- 'chrome:headless'
- 'firefox:headless'
- 'browserstack:ie'
- 'browserstack:safari'
include:
- browserstack: chrome
- browser: 'chrome:headless'
name: Chrome
- browserstack: ie
- browser: 'firefox:headless'
name: Firefox
- browser: 'browserstack:ie'
name: IE11
- browserstack: safari
- browser: 'browserstack:safari'
name: Safari

steps:
Expand All @@ -51,4 +54,4 @@ jobs:
run: pnpm build-rollup

- name: Run ${{ matrix.name }} test
run: node scripts/run-testcafe-with-retries.mjs --browser "browserstack:${{ matrix.browserstack }}" --attempts 3
run: node scripts/run-testcafe-with-retries.mjs --browser "${{ matrix.browser }}" --attempts 3

0 comments on commit 57c3b46

Please sign in to comment.