-
Notifications
You must be signed in to change notification settings - Fork 98
95 lines (95 loc) · 2.23 KB
/
ci.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
on:
push:
branches:
- master
pull_request:
name: ci
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
# Docker containers to run for database RPC tracing integration tests.
services:
mongo:
image: mongo:5
ports:
- 27017:27017
mysql:
image: mysql:5
env:
MYSQL_ROOT_PASSWORD: Password12!
MYSQL_DATABASE: test
ports:
- 3306:3306
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: Password12!
POSTGRES_DB: test
ports:
- 5432:5432
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: node --version
- run: npm install
- run: npm test
- name: coverage
uses: codecov/codecov-action@v3
with:
name: actions ${{ matrix.node }}
fail_ci_if_error: true
windows:
runs-on: windows-latest
env:
# GitHub Actions does not support running services alongside Windows.
# This flag disables integration tests.
TRACE_TEST_EXCLUDE_INTEGRATION: 1
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm test
- name: coverage
uses: codecov/codecov-action@v3
with:
name: actions windows
fail_ci_if_error: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm run lint
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm run docs-test
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm run license-check