Skip to content

chore(deps): update actions/checkout action to v4 #27

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #27

Workflow file for this run

name: e2e
on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
cypress-run:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16,18,20]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2.4.0
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Install npm dependencies, cache them correctly
# and run all Cypress tests
- name: cy run
uses: cypress-io/github-action@v5
with:
working-directory: './packages/webapp'
start: pnpm dev
wait-on: http://localhost:8080
runTests: true
record: true
parallel: true
browser: chrome
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}