Cypress Tests - Production #795
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Action that Runs Cypress Tests | |
name: Cypress Tests - Production | |
# Controls when the action will run. | |
on: | |
schedule: | |
- cron: '0 5 * * 1-5' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
cypress-run: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false # suggested by Cypress | |
matrix: | |
containers: [1, 2, 3, 4, 5] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
# Runs a set of commands using the runners shell | |
- name: Install | |
run: | | |
npm --version | |
npm config set python /usr/bin/python2.7 | |
npm ci | |
$(npm bin)/cypress install | |
$(npm bin)/cypress cache prune | |
- name: Cypress | |
env: | |
CYPRESS_KEY: ${{ secrets.CYPRESS_KEY }} | |
Auth0Client: ${{ secrets.Auth0Client }} | |
Auth0Secret: ${{ secrets.Auth0Secret }} | |
run: | | |
$(npm bin)/cypress run --record --key $CYPRESS_KEY --env Auth0Client=$Auth0Client,Auth0Secret=$Auth0Secret --project ./deploy/post_deploy_testing --browser chrome --config baseUrl=https://cgap-mgb.hms.harvard.edu/ --parallel | |