chore(deps-dev): bump the development-dependencies group across 1 directory with 2 updates #1040
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cypress tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
browser: ['chrome', 'firefox'] | |
name: Run Cypress tests on ${{ matrix.browser }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build manifest | |
run: npm run manifest | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
headed: true | |
browser: ${{ matrix.browser }} | |
record: false |