-
-
Notifications
You must be signed in to change notification settings - Fork 15
39 lines (32 loc) · 980 Bytes
/
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
name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
nodejs: [8, 10, 12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: npm install
- name: Install (coverage)
if: matrix.nodejs >= 14 && matrix.os == 'ubuntu-latest'
run: npm install -g c8
- name: Test
run: npm test
- name: Test (coverage)
if: matrix.nodejs >= 14 && matrix.os == 'ubuntu-latest'
run: c8 npm test
- name: Report (coverage)
if: matrix.nodejs >= 14 && matrix.os == 'ubuntu-latest'
run: |
c8 report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}