-
-
Notifications
You must be signed in to change notification settings - Fork 142
85 lines (70 loc) · 1.8 KB
/
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
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js current with cache
uses: actions/setup-node@v3
with:
node-version: current
cache: 'npm'
- name: npm install
run: |
npm ci
- name: Lint
run: |
npm run lint
test:
name: Build and Test
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest]
include:
- node-version: 14.x
os: ubuntu-latest
npm-version: '7'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} with cache
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- if: ${{ matrix.npm-version }}
run: npm install -g npm@${{ matrix.npm-version }}
- name: npm install, build and test
run: |
npm ci
npm run build
npm run test:ci
env:
CI: true
- name: Generate Coverage Report
run: npm run coverage-report-lcov
- name: Upload Coverage to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
flag-name: ${{matrix.os}}-node-${{ matrix.node-version }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true