-
Notifications
You must be signed in to change notification settings - Fork 3
70 lines (65 loc) · 1.73 KB
/
kyanite.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
68
69
70
name: Kyanite CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
test:
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@v2
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm run test:cov
- name: Run Report
run: npm run report
- name: Check Coverage
run: npm run check-cov
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.lcov
name: pf-tests
flags: unittests
lint:
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@v2
with:
node-version: ${{ matrix.node-version }}
- name: Check node_module Cache
id: node-module-cache
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-module-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run lint