-
Notifications
You must be signed in to change notification settings - Fork 14
41 lines (41 loc) · 1.09 KB
/
infologger.yml
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
name: InfoLogger
on:
pull_request:
paths:
- 'InfoLogger/**/*'
- '.github/workflows/infologger.yml'
push:
branches:
- 'main'
- 'dev'
jobs:
test:
name: Tests on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: '22.x'
- run: (cd InfoLogger; npm ci )
- run: (cd InfoLogger; npm test )
coverage:
name: Tests & coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22.x'
- run: (cd InfoLogger; npm ci )
- run: (cd InfoLogger; npm run coverage )
- run: (cd InfoLogger; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov)
- name: Send codecov report for InfoLogger
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: infologger
fail_ci_if_error: true