Skip to content

Bump eslint from 7.32.0 to 8.57.0 #261

Bump eslint from 7.32.0 to 8.57.0

Bump eslint from 7.32.0 to 8.57.0 #261

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
# https://github.com/actions/runner-images
runs-on: ubuntu-22.04
# https://hub.docker.com/_/node/
container: node:18
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build
- run: npm run test:quick
test-e2e:
# https://github.com/actions/runner-images
runs-on: ubuntu-22.04
# https://docs.cypress.io/examples/docker
container: cypress/included:13.2.0
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# https://github.com/actions/setup-node
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run test:e2e:ci