-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (43 loc) · 1.08 KB
/
ci-thing-model.yaml
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
name: TM Helpers CI Pipeline
on:
push:
branches: [main]
paths:
- "node/thing-model/**"
pull_request:
branches: [main]
paths:
- "node/thing-model/**"
workflow_dispatch:
defaults:
run:
working-directory: node/thing-model
jobs:
setup-and-test:
name: Tests (${{ matrix.os }}), Node ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x, 20.x]
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.os }} ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test:coverage
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/lcov.info
verbose: true