Skip to content

Restart CI (part 2) #11

Restart CI (part 2)

Restart CI (part 2) #11

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:16
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:7.6.0
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
- run: npm ci
- run: npm run test:e2e:ci