Merge branch 'main' into 226-change-to-sft-roles-page #214
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
name: Cypress Tests | |
on: | |
[push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Update npm and clear cache | |
run: | | |
npm install -g npm@latest | |
npm cache clean --force | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Cypress component tests | |
run: npx cypress run-ct |