Skip to content

chore(dependencies): update cypress-io/github-action action to v7 #15869

chore(dependencies): update cypress-io/github-action action to v7

chore(dependencies): update cypress-io/github-action action to v7 #15869

Workflow file for this run

on:
push:
pull_request:
name: Main workflow
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js LTS
uses: actions/setup-node@v6
with:
node-version: lts/*
- run: yarn
- run: yarn test
- uses: codecov/codecov-action@v6
lighthouse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js LTS
uses: actions/setup-node@v6
with:
node-version: lts/*
- run: yarn
- run: yarn build
- name: Run Lighthouse
uses: treosh/lighthouse-ci-action@v9
with:
configPath: './.github/lighthouserc.json'
temporaryPublicStorage: true
cypress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js LTS
uses: actions/setup-node@v6
with:
node-version: lts/*
- uses: cypress-io/github-action@v7.3.0
with:
build: yarn build
start: yarn start
wait-on: 'http://localhost:3000'
config: pageLoadTimeout=100000,baseUrl=http://localhost:3000
- uses: actions/upload-artifact@v7
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
- uses: actions/upload-artifact@v7
if: always()
with:
name: cypress-videos
path: cypress/videos