Skip to content

Bump cypress from 10.11.0 to 12.17.2 #171

Bump cypress from 10.11.0 to 12.17.2

Bump cypress from 10.11.0 to 12.17.2 #171

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: actions/cache@v2
with:
path: ~/.npm
key: v1/${{ runner.os }}/node-14/${{ hashFiles('**/package-lock.json') }}
restore-keys: v1/${{ runner.os }}/node-14/
- name: Install dependencies
run: npm ci
- name: Run tests
uses: percy/[email protected]
with:
custom-command: "npm test"
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}