-
Notifications
You must be signed in to change notification settings - Fork 26
93 lines (72 loc) · 2.25 KB
/
github-ci.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: GitHub CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
general-checks-test-coverage:
name: General checks, tests and coverage reporting
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js v20.11.0
uses: actions/[email protected]
with:
node-version: 20.11.0
- name: Install dependencies
run: npm ci
- name: Perform checks and tests
run: npm test
- name: Send report to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test-matrix:
name: Unit / Integration tests on Node.js ${{ matrix.node-version }} and ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
# Using 'install' instead of 'ci' as npm v7 doesn't run the 'prepare' script
# (see https://github.com/npm/cli/issues/1905)
- run: npm install
name: Install dependencies
- run: npm ls --prod
name: Check for missing / extraneous dependencies
- run: npm run unit
name: Run unit tests
- run: npm run integration
name: Run integration tests
# Test matrix for older karma versions to ensure compatibility
test-karma-matrix:
name: Integration tests with karma v${{matrix.karma-version}}
strategy:
fail-fast: false
matrix:
karma-version: [
"4.3.0", # minimum v4.x version as defined in package.json#peerDependencies
"4", # latest v4.x
"5" # latest v5.x
]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js LTS 20.x
uses: actions/[email protected]
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Install karma v${{matrix.karma-version}}
run: npm i -D karma@${{matrix.karma-version}}
- name: Run integration tests
run: npm run integration