-
Notifications
You must be signed in to change notification settings - Fork 8
68 lines (59 loc) · 1.76 KB
/
build.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
name: Build, test and coverage
on: pull_request
jobs:
test-matrix:
strategy:
matrix:
node: [10, 12, 14]
name: Test build Node v ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v1
with:
path: ./node_modules
key: test-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: test-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
- name: Install deps
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm install
- name: Lint code
run: make lint
- name: Run tests
run: make tests
test-success:
runs-on: ubuntu-latest
needs: test-matrix
steps:
- name: Matrix tests passed
run: echo Done!
test-coverage:
runs-on: ubuntu-latest
needs: test-success
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: actions/cache@v1
id: cache-node-modules
with:
path: ./node_modules
key: test-12-${{hashFiles('./package-lock.json')}}
restore-keys: test-12-${{hashFiles('./package-lock.json')}}
- name: Install modules
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm install
- name: Test with coverage
run: make test-coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}