Bump the js-packages group across 1 directory with 12 updates #149
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: End-to-end tests | |
on: push | |
jobs: | |
cypress-run: | |
strategy: | |
matrix: | |
browser: [chrome, edge, firefox] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Install yarn dependencies, cache them correctly | |
# and run all Cypress tests | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
browser: ${{ matrix.browser }} | |
install-command: yarn install | |
build: yarn build | |
start: yarn start | |
env: | |
CI_TEST: true | |
- name: Upload failed test screenshots | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Failed on ${{matrix.browser}} | |
path: cypress/screenshots |