Skip to content

chore(deps): bump codecov/codecov-action from 5 to 7 (#734) #1226

chore(deps): bump codecov/codecov-action from 5 to 7 (#734)

chore(deps): bump codecov/codecov-action from 5 to 7 (#734) #1226

Workflow file for this run

name: E2E Test
on: push
jobs:
cypress-run:
runs-on: ubuntu-latest
strategy:
matrix:
containers: [0, 1, 2, 3, 4, 5]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v5
with:
node-version: '20.20.0'
- name: Install dependencies
run: yarn install --force
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: yarn build
start: yarn start
wait-on: 'http://localhost:3000'
wait-on-timeout: 120
command: npm run cy:run:parallel
env:
CI: true
DEBUG: 'cypress-split,find-cypress-specs'
SPLIT: 6
SPLIT_INDEX: ${{ matrix.containers }}
GITHUB_RUN_ID: ${{ github.run_id }}
GITHUB_RUN_ATTEMPT: ${{ github.run_attempt }}
GITHUB_JOB: ${{ github.job }}
SPLIT_FILE_SIZE: true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}