-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (42 loc) · 1.1 KB
/
ci-open-api-converter.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
name: OpenAPI Converter CI Pipeline
on:
push:
branches: [main]
paths:
- "node/open-api-converter/**"
pull_request:
branches: [main]
paths:
- "node/open-api-converter/**"
workflow_dispatch:
defaults:
run:
working-directory: node/open-api-converter
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 Dependencies
run: npm ci
- 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