-
Notifications
You must be signed in to change notification settings - Fork 62
59 lines (57 loc) · 1.51 KB
/
ci.yaml
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
on:
push:
branches: [main]
pull_request:
name: ci
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 19]
include:
- node: 14
npm-version: ^7
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# TODO: remove once node 14 is dropped
- name: Install npm@${{ matrix.npm-version }}
if: matrix.npm-version
run: npm install -g npm@${{ matrix.npm-version }}
- run: |
node --version
npm --version
- run: npm install
- run: npm test
- name: Report Coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
verbose: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 19
- run: npm install
- run: npm run lint
# Verify npm package-lock.json files use lockfileVersion 2
verify-package-lock-v2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
for f in $(git ls-files "**package-lock.json")
do
lockfileVersion=$(jq ".lockfileVersion" $f)
if [ $lockfileVersion -lt 2 ]
then
>&2 echo "package-lock.json files should have at least lockfileVersion 2, but $f has version $lockfileVersion"
exit 1
fi
done