Skip to content

update to node 16 and cypress 10 #291

update to node 16 and cypress 10

update to node 16 and cypress 10 #291

Workflow file for this run

name: Node.js CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run regression:run
env:
CI: true
- name: Archive Cypress Snapshots
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: cypress/snapshots/
if: ${{ always() }}