-
Notifications
You must be signed in to change notification settings - Fork 2
81 lines (63 loc) · 1.76 KB
/
ci.yml
File metadata and controls
81 lines (63 loc) · 1.76 KB
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
75
76
77
78
79
80
81
# agent-pmo:424c8f8
name: CI
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- name: Format check
run: make fmt CHECK=1
- name: Lint
run: make lint
# make test = fail-fast + coverage + threshold enforcement ([TEST-RULES]).
# Thresholds live in coverage-thresholds.json ([COVERAGE-THRESHOLDS-JSON]).
- name: Test
run: make test-exclude-ci
- name: Upload coverage
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: coverage/
retention-days: 7
- name: Build
run: make build
- name: Package
run: make package
website:
name: Website tests
runs-on: ubuntu-latest
# TIMEOUT EXCEPTION: Playwright install + browser tests commonly exceed 10 min
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: website
- name: Build site
run: npx @11ty/eleventy
working-directory: website
- name: Install Playwright
run: npx playwright install --with-deps chromium
working-directory: website
- name: Run website tests
run: npx playwright test
working-directory: website