@@ -30,12 +30,14 @@ jobs:
30
30
- name : Start
31
31
run : yarn workspace express-graphql start &
32
32
- name : Audit
33
- run : node scripts/audit-implementation.mjs README.md
33
+ run : node scripts/audit-implementation.mjs .
34
34
- name : Upload report
35
35
uses : actions/upload-artifact@v3
36
36
with :
37
37
name : express-graphql-report
38
- path : README.md
38
+ path : |
39
+ README.md
40
+ report.json
39
41
40
42
apollo-server :
41
43
runs-on : ubuntu-latest
@@ -57,12 +59,14 @@ jobs:
57
59
- name : Start
58
60
run : yarn workspace apollo-server start &
59
61
- name : Audit
60
- run : node scripts/audit-implementation.mjs README.md
62
+ run : node scripts/audit-implementation.mjs .
61
63
- name : Upload report
62
64
uses : actions/upload-artifact@v3
63
65
with :
64
66
name : apollo-server-report
65
- path : README.md
67
+ path : |
68
+ README.md
69
+ report.json
66
70
67
71
mercurius :
68
72
runs-on : ubuntu-latest
@@ -84,12 +88,14 @@ jobs:
84
88
- name : Start
85
89
run : yarn workspace mercurius start &
86
90
- name : Audit
87
- run : node scripts/audit-implementation.mjs README.md
91
+ run : node scripts/audit-implementation.mjs .
88
92
- name : Upload report
89
93
uses : actions/upload-artifact@v3
90
94
with :
91
95
name : mercurius-report
92
- path : README.md
96
+ path : |
97
+ README.md
98
+ report.json
93
99
94
100
graphql-yoga :
95
101
runs-on : ubuntu-latest
@@ -111,12 +117,14 @@ jobs:
111
117
- name : Start
112
118
run : yarn workspace graphql-yoga start &
113
119
- name : Audit
114
- run : node scripts/audit-implementation.mjs README.md
120
+ run : node scripts/audit-implementation.mjs .
115
121
- name : Upload report
116
122
uses : actions/upload-artifact@v3
117
123
with :
118
124
name : graphql-yoga-report
119
- path : README.md
125
+ path : |
126
+ README.md
127
+ report.json
120
128
121
129
graphql-helix :
122
130
runs-on : ubuntu-latest
@@ -138,12 +146,14 @@ jobs:
138
146
- name : Start
139
147
run : yarn workspace graphql-helix start &
140
148
- name : Audit
141
- run : node scripts/audit-implementation.mjs README.md
149
+ run : node scripts/audit-implementation.mjs .
142
150
- name : Upload report
143
151
uses : actions/upload-artifact@v3
144
152
with :
145
153
name : graphql-helix-report
146
- path : README.md
154
+ path : |
155
+ README.md
156
+ report.json
147
157
148
158
graph-client :
149
159
runs-on : ubuntu-latest
@@ -165,12 +175,14 @@ jobs:
165
175
- name : Start
166
176
run : yarn workspace graph-client start &
167
177
- name : Audit
168
- run : node scripts/audit-implementation.mjs README.md
178
+ run : node scripts/audit-implementation.mjs .
169
179
- name : Upload report
170
180
uses : actions/upload-artifact@v3
171
181
with :
172
182
name : graph-client-report
173
- path : README.md
183
+ path : |
184
+ README.md
185
+ report.json
174
186
175
187
thegraph :
176
188
runs-on : ubuntu-latest
@@ -190,12 +202,14 @@ jobs:
190
202
- name : Build
191
203
run : yarn build:esm
192
204
- name : Audit
193
- run : node scripts/audit-implementation.mjs README.md
205
+ run : node scripts/audit-implementation.mjs .
194
206
- name : Upload report
195
207
uses : actions/upload-artifact@v3
196
208
with :
197
209
name : thegraph-report
198
- path : README.md
210
+ path : |
211
+ README.md
212
+ report.json
199
213
200
214
hotchocolate :
201
215
runs-on : ubuntu-latest
@@ -218,12 +232,14 @@ jobs:
218
232
run : yarn workspace hotchocolate start -d --wait
219
233
# TODO: cache docker build artifacts
220
234
- name : Audit
221
- run : node scripts/audit-implementation.mjs README.md
235
+ run : node scripts/audit-implementation.mjs .
222
236
- name : Upload report
223
237
uses : actions/upload-artifact@v3
224
238
with :
225
239
name : hotchocolate-report
226
- path : README.md
240
+ path : |
241
+ README.md
242
+ report.json
227
243
228
244
postgraphile :
229
245
runs-on : ubuntu-latest
@@ -246,12 +262,14 @@ jobs:
246
262
run : yarn workspace postgraphile start -d --wait
247
263
# TODO: cache docker build artifacts
248
264
- name : Audit
249
- run : node scripts/audit-implementation.mjs README.md
265
+ run : node scripts/audit-implementation.mjs .
250
266
- name : Upload report
251
267
uses : actions/upload-artifact@v3
252
268
with :
253
269
name : postgraphile-report
254
- path : README.md
270
+ path : |
271
+ README.md
272
+ report.json
255
273
pioneer :
256
274
runs-on : ubuntu-latest
257
275
if : " !contains(github.event.head_commit.message, '[skip ci]')"
@@ -273,12 +291,14 @@ jobs:
273
291
run : yarn workspace pioneer start -d --wait
274
292
# TODO: cache docker build artifacts
275
293
- name : Audit
276
- run : node scripts/audit-implementation.mjs README.md
294
+ run : node scripts/audit-implementation.mjs .
277
295
- name : Upload report
278
296
uses : actions/upload-artifact@v3
279
297
with :
280
298
name : pioneer-report
281
- path : README.md
299
+ path : |
300
+ README.md
301
+ report.json
282
302
283
303
report :
284
304
name : Report
0 commit comments