Skip to content

Fix path

Fix path #24

Workflow file for this run

name: Cypress Tests
on: push
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Install npm dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: npm i && npm run e2e:ci