j40-cejst-2/.github/workflows/e2e.yml
Vim f301dfcd80
cypress e2e nightly (#360)
* fixes nightly e2e test

* adds on command
2021-07-15 10:27:22 -07:00

20 lines
498 B
YAML

name: End to end tests
on:
# push
schedule:
# runs tests every day at 12am ET (4am UTC)
- cron: '0 4 * * *'
jobs:
nightly:
runs-on: ubuntu-20.04
env:
working-directory: ./client
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cypress nightly tests 🌃
uses: cypress-io/github-action@v2
with:
working-directory: ${{env.working-directory}}
start: npm start
wait-on: 'http://localhost:8000'