-
Notifications
You must be signed in to change notification settings - Fork 9
74 lines (58 loc) · 1.76 KB
/
tests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 23.4
- name: npm install
run: npm install
- name: test
run: npm run test
- name: test check should succeed
run: |
set +e
./src/cli.js check example-com > check_report
code=$?
set -e
cat check_report
[ $code -eq 1 ] && echo 'Error: Check should succeed' && exit 1
grep '"success":true' check_report
- name: test check should fail
run: |
set +e
./src/cli.js check example-com-fail > check_report
code=$?
set -e
cat check_report
[ $code -eq 0 ] && echo 'Error: Check should fail' && exit 1
grep '"success":false' check_report
grep "Element 'body' does not contain 'No Way'" check_report
- name: test check lighthouse
run: |
set +e
PURR_CONFIG_CONCURRENCY=1 \
PURR_CONFIG_TRACES=false \
PURR_CONFIG_CHROMIUM_REMOTE_DEBUGGING=true \
PURR_CONFIG_BROWSER_HEADLESS=false \
./src/cli.js check --no-shorten \
example-com-lighthouse > check_report
code=$?
set -e
cat check_report
[ $code -eq 1 ] && echo 'Error: Check should succeed' && exit 1
grep '"success":true' check_report
grep "labels: { name: 'first-contentful-paint', id: 'lh-one' }" \
check_report
- name: 'lint configs'
run: npm run prettier
- name: lint
run: npm run lint