-
-
Notifications
You must be signed in to change notification settings - Fork 83
35 lines (33 loc) · 849 Bytes
/
Copy pathnode.js.yml
File metadata and controls
35 lines (33 loc) · 849 Bytes
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
35
name: CI
on:
push:
pull_request:
branches: [ master ]
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 1 * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: tests/package-lock.json
- run: npm ci
working-directory: tests
- run: npx playwright install --with-deps chromium
working-directory: tests
- run: npm test
working-directory: tests
- run: npm ci
working-directory: node-app
- run: npm run test:node-cli
working-directory: tests
- run: npm run test:live
id: live-tests
continue-on-error: true
timeout-minutes: 75
working-directory: tests