-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (32 loc) · 823 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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