Skip to content

chore(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#490) #1045

chore(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#490)

chore(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#490) #1045

Workflow file for this run

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/checkout@v4.1.5
- name: Build manifest
run: npm run manifest
- name: Cypress run
uses: cypress-io/github-action@v6
with:
headed: true
browser: ${{ matrix.browser }}
record: false