-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (40 loc) · 1.09 KB
/
workflow.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
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup timezone
uses: zcong1993/setup-timezone@v1.1.0
with:
timezone: Europe/Amsterdam
- run: npm install
- run: npm run lint
- run: npm run test:ts
- run: npm run test:coverage
- run: npm run tsc
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
directory: ./coverage
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
path_to_write_report: ./coverage/codecov_report.txt
verbose: true