-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (37 loc) · 1.03 KB
/
api-client.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
name: api-client coverage
on:
pull_request:
paths:
- 'packages/api-client/**'
push:
branches:
- main
jobs:
build:
name: Get api client test coverage on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.17.1']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
working-directory: ./packages/api-client
- name: test
run: npm run test
working-directory: ./packages/api-client
- name: Coverage
run: npm run test:coverage
working-directory: ./packages/api-client
- name: Comment
uses: romeovs/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lcov-file: ./packages/api-client/coverage/lcov.info