Skip to content

chore: keep default behavior #332

chore: keep default behavior

chore: keep default behavior #332

Workflow file for this run

name: Cypress
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Test on oldest Node LTS and latest Node stable
node: [lts/-1, current]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run and record Cypress tests
run: yarn run cy:test