File tree Expand file tree Collapse file tree 1 file changed +19
-18
lines changed Expand file tree Collapse file tree 1 file changed +19
-18
lines changed Original file line number Diff line number Diff line change @@ -44,32 +44,32 @@ jobs:
44
44
fail-fast : false
45
45
matrix :
46
46
node :
47
- - " 18.19.0"
48
- - " 18 "
49
- - " 20.6.0"
50
- - " 20 "
51
- - " 22 "
52
- - " 24 "
47
+ - ' 18.19.0'
48
+ - ' 18 '
49
+ - ' 20.6.0'
50
+ - ' 20 '
51
+ - ' 22 '
52
+ - ' 24 '
53
53
include :
54
- - node : 18
55
- code-coverage : true
54
+ - node : 18
55
+ code-coverage : true
56
56
runs-on : ubuntu-latest
57
57
services :
58
58
memcached :
59
59
image : memcached:1.6.38-alpine
60
60
ports :
61
- - 11211:11211
61
+ - 11211:11211
62
62
mongo :
63
63
image : mongo
64
64
ports :
65
- - 27017:27017
65
+ - 27017:27017
66
66
mssql :
67
67
image : mcr.microsoft.com/mssql/server:2022-latest
68
68
env :
69
69
MSSQL_SA_PASSWORD : mssql_passw0rd
70
70
ACCEPT_EULA : Y
71
71
ports :
72
- - 1433:1433
72
+ - 1433:1433
73
73
options : >-
74
74
--health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $MSSQL_SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
75
75
--health-interval 1s
84
84
MYSQL_DATABASE : otel_mysql_database
85
85
MYSQL_ROOT_PASSWORD : rootpw
86
86
ports :
87
- - 3306:3306
87
+ - 3306:3306
88
88
options : >-
89
89
--health-cmd="mysqladmin ping"
90
90
--health-interval 10s
@@ -110,7 +110,7 @@ jobs:
110
110
POSTGRES_DB : otel_pg_database
111
111
POSTGRES_PASSWORD : postgres
112
112
ports :
113
- - 5432:5432
113
+ - 5432:5432
114
114
options : >-
115
115
--health-cmd pg_isready
116
116
--health-interval 10s
@@ -119,7 +119,7 @@ jobs:
119
119
redis :
120
120
image : redis
121
121
ports :
122
- - 6379:6379
122
+ - 6379:6379
123
123
options : >-
124
124
--health-cmd "redis-cli ping"
125
125
--health-interval 10s
@@ -128,11 +128,11 @@ jobs:
128
128
cassandra :
129
129
image : bitnami/cassandra:3
130
130
ports :
131
- - 9042:9042
131
+ - 9042:9042
132
132
rabbitmq :
133
133
image : rabbitmq:3
134
134
ports :
135
- - 22221:5672
135
+ - 22221:5672
136
136
env :
137
137
RABBITMQ_DEFAULT_USER : username
138
138
RABBITMQ_DEFAULT_PASS : password
@@ -203,14 +203,15 @@ jobs:
203
203
retention-days : 1
204
204
path : |
205
205
!node_modules
206
- **/.nyc_output/**
206
+ packages/*/.nyc_output/**
207
+ incubator/*/.nyc_output/**
207
208
208
209
browser-test :
209
210
needs : compile
210
211
strategy :
211
212
fail-fast : false
212
213
matrix :
213
- node : ["22" ]
214
+ node : ['22' ]
214
215
runs-on : ubuntu-latest
215
216
env :
216
217
NPM_CONFIG_UNSAFE_PERM : true
You can’t perform that action at this time.
0 commit comments