Skip to content

Repeat instructions after two incorrect answers in a row #273

Repeat instructions after two incorrect answers in a row

Repeat instructions after two incorrect answers in a row #273

Workflow file for this run

name: Run all cypress tests
on:
push:
branches:
- main
- spyne/cypressci
pull_request:
branches:
- main
jobs:
cypress-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
working-directory: ./task-launcher
- name: Cache npm dependencies
uses: actions/cache@v3
with:
path: ./task-launcher/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/task-launcher/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Run cypress tests
uses: cypress-io/github-action@v6
with:
browser: chrome
working-directory: ./task-launcher
start: npm run dev