Skip to content

Integration tests #1422

Integration tests

Integration tests #1422

Workflow file for this run

name: Integration tests
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- run: yarn
- name: Test
run: yarn cypress:headless
env:
cypress_url: ${{ secrets.IT_URL }}
cypress_password: ${{ secrets.IT_PASSWORD }}
cypress_username: ${{ secrets.IT_USERNAME }}