-
-
Notifications
You must be signed in to change notification settings - Fork 16
59 lines (51 loc) · 1.13 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
name: CI
on:
push:
paths-ignore:
- 'bench/**'
- '*.md'
branches:
- '**'
tags-ignore:
- '**'
pull_request:
paths-ignore:
- 'bench/**'
- '*.md'
branches:
- master
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
strategy:
matrix:
# Node 10.x not supported by tsm & bundt
nodejs: [12, 14, 16, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: npm install
- name: Type Check
run: npm run types
- name: Test
if: matrix.nodejs < 18
run: npm test
- name: Test w/ Coverage
if: matrix.nodejs >= 18
run: |
npm install -g nyc
nyc --include=src npm test
- name: Compile
if: matrix.nodejs >= 18
run: npm run build
- name: Report
if: matrix.nodejs >= 18
run: |
nyc report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}