-
-
Notifications
You must be signed in to change notification settings - Fork 79
33 lines (28 loc) · 698 Bytes
/
Copy pathci.yml
File metadata and controls
33 lines (28 loc) · 698 Bytes
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
name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [10, 12, 14, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: npm install
- name: Test
if: matrix.nodejs <= 20
run: npm test
- name: Coverage
if: matrix.nodejs > 20
run: |
npm install -g c8
c8 npm test
c8 report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}