-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (44 loc) · 1.09 KB
/
ci-aas-aid.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
55
name: AAS AID CI Pipeline
on:
push:
branches: [main]
paths:
- "node/aas-aid/**"
pull_request:
branches: [main]
paths:
- "node/aas-aid/**"
workflow_dispatch:
defaults:
run:
working-directory: node/aas-aid
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
timeout-minutes: 10
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