Skip to content

Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group (#264) #714

Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group (#264)

Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group (#264) #714

Workflow file for this run

name: Cypress + Percy
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4.1.0
- name: Cypress
uses: cypress-io/github-action@v6
with:
build: yarn build
start: yarn start
quiet: true
command-prefix: percy exec --
env:
PERCY_TOKEN: "${{ secrets.PERCY_TOKEN }}"
CYPRESS_DEFAULT_COMMAND_TIMEOUT: 10000
- name: Upload Cypress videos
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
path: cypress/videos
- name: Upload Cypress screenshots
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-screenshots
path: cypress/screenshots