Skip to content

Closes #90

Closes #90 #135

Workflow file for this run

name: Build
on: [push, workflow_dispatch]
jobs:
cypress-run:
runs-on: ubuntu-latest
container:
image: cypress/browsers:node16.14.0-chrome99-ff97
options: --user 1001
steps:
- name: Checkout
uses: actions/checkout@v2
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v2
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
with:
browser: chrome
wait-on: 'http://localhost:5555'
wait-on-timeout: 180
record: true
start: yarn cypress:server