generated from im-open/javascript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
550 lines (443 loc) · 26.7 KB
/
build-and-review-pr.yml
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
name: Build and Review PR
run-name: 'Build and Review PR #${{ github.event.pull_request.number }}'
on:
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
#
# This workflow uses the pull_request trigger which prevents write permissions on the
# GH_TOKEN and secrets access from public forks. This should remain as a pull_request
# trigger to minimize the access public forks have in the repository. The reduced
# permissions are adequate but do mean that re-compiles and readme changes will have to be
# made manually by the PR author. These auto-updates could be done by this workflow
# for branches but in order to re-trigger a PR build (which is needed for status checks),
# we would make the commits with a different user and their PAT. To minimize exposure
# and complication we will request those changes be manually made by the PR author.
pull_request:
types: [opened, synchronize, reopened]
# paths:
# Do not include specific paths here. We always want this build to run and produce a
# status check which are branch protection rules can use. If this is skipped because of
# path filtering, a status check will not be created and we won't be able to merge the PR
# without disabling that requirement. If we have a status check that is always produced,
# we can also use that to require all branches be up to date before they are merged.
env:
MISSING_MD_FILE: './test/expected-markdown/missing-file.md'
EMPTY_MD_FILE: './test/expected-markdown/empty.md'
COMMENTS_MD_FILE: './test/expected-markdown/comments-only.md'
ENTITIES_MD_FILE: './test/expected-markdown/invalid-entities.md'
SYSTEMS_MD_FILE: './test/expected-markdown/invalid-systems.md'
DOMAINS_MD_FILE: './test/expected-markdown/invalid-domains.md'
RESOURCES_MD_FILE: './test/expected-markdown/invalid-resources.md'
COMPONENTS_MD_FILE: './test/expected-markdown/invalid-components.md'
APIS_MD_FILE: './test/expected-markdown/invalid-apis.md'
jobs:
build-and-review-pr:
# This reusable workflow will check to see if an action's source code has changed based on
# whether the PR includes files that match the files-with-code arg or are in one of the
# dirs-with-code directories. If there are source code changes, this reusable workflow
# will then run the action's build (if one was provided) and update the README.md with the
# the latest version of the action. If those two steps result in any changes that need to
# be committed, the workflow will fail because the PR needs some updates. Instructions for
# updating the PR will be available in the build log, the workflow summary and as a PR
# comment if the PR came from a branch (not a fork).
# This workflow assumes:
# - The main README.md is at the root of the repo
# - The README contains a contribution guidelines and usage examples section
uses: im-open/.github/.github/workflows/reusable-build-and-review-pr.yml@v1
with:
action-name: ${{ github.repository }}
default-branch: main
readme-name: 'README.md'
# The id of the contribution guidelines section of the README.md
readme-contribution-id: '#contributing'
# The id of the usage examples section of the README.md
readme-examples-id: '#usage-examples'
# The files that contain source code for the action. Only files that affect the action's execution
# should be included like action.yml or package.json. Do not include files like README.md or .gitignore.
# Files do not need to be explicitly provided here if they fall under one of the dirs in dirs-with-code.
# The format of this input is a comma-separated string.
# ** This value must match the same files-with-code argument specified in increment-version-on-merge.yml.
files-with-code: 'action.yml,package.json,package-lock.json'
# The directories that contain source code for the action. Only dirs with files that affect the action's
# execution should be included like src or dist. Do not include dirs like .github or node_modules.
# The format of this input is a comma-separated string.
# ** This value must match the same dirs-with-code argument specified in increment-version-on-merge.yml.
dirs-with-code: 'src,dist,schema'
# The npm script to run to build the action. This is typically 'npm run build' if the
# action needs to be compiled. For composite-run-steps actions this is typically empty.
build-command: 'npm run build'
test-file-problems:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 1 - FILENAME THAT DOES NOT EXIST AND FAIL-IF-ERRORS=TRUE '
run: echo ""
- name: 1 - When validate-catalog-info is called with a filename that does not exist and fail-if-errors=true
id: file-does-not-exist-fail
if: always()
continue-on-error: true # This is needed because we expect the step to fail but we need it to "pass" in order for the test job to succeed.
uses: ./
with:
# filename: ./catalog-info.yml # This is the default value but it doesn't exist in this repo
fail-if-errors: true
generate-job-summary: false
- name: 1 - Then the action outcome should be failure
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "failure" --actual "${{ steps.file-does-not-exist-fail.outcome }}"
- name: 1 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.file-does-not-exist-fail.outputs.is-valid }}"
- name: 1 - And the 'errors-markdown' output should match the contents of '${{ env.MISSING_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.MISSING_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.file-does-not-exist-fail.outputs.errors-markdown }}'
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 2 - FILENAME THAT DOES NOT EXIST AND FAIL-IF-ERRORS=FALSE '
run: echo ""
- name: 2 - When validate-catalog-info is called with a filename that does not exist but fail-if-errors=false
id: file-does-not-exist-pass
if: always()
uses: ./
with:
filename: ./catalog-info.yml
fail-if-errors: false
generate-job-summary: false
- name: 2 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.file-does-not-exist-pass.outcome }}"
- name: 2 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.file-does-not-exist-pass.outputs.is-valid }}"
- name: 2 - And the 'errors-markdown' output should match the contents of '${{ env.MISSING_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.MISSING_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.file-does-not-exist-pass.outputs.errors-markdown }}'
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 3 - FILE IS EMPTY '
run: echo ""
- name: 3 - When validate-catalog-info is called with a file that exists but is empty
id: empty-file
if: always()
uses: ./
with:
filename: ./test/catalog-infos/empty.yml
fail-if-errors: false
generate-job-summary: false
- name: 3 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.empty-file.outcome }}"
- name: 3 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.empty-file.outputs.is-valid }}"
- name: 3 - And the 'errors-markdown' output should match the contents of '${{ env.EMPTY_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.EMPTY_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.empty-file.outputs.errors-markdown }}'
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 4 - FILE IS JUST COMMENTS '
run: echo ""
- name: 4 - When validate-catalog-info is called with a file that exists but it only contains comments
id: comments-only
if: always()
continue-on-error: true # This is needed because we expect the step to fail but we need it to "pass" in order for the test job to succeed.
uses: ./
with:
filename: ./test/catalog-infos/comments-only.yml
fail-if-errors: false
generate-job-summary: false
- name: 4 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.comments-only.outcome }}"
- name: 4 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.comments-only.outputs.is-valid }}"
- name: 4 - And the 'errors-markdown' output should match the contents of '${{ env.COMMENTS_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.COMMENTS_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.comments-only.outputs.errors-markdown }}'
test-valid-files:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 5 - VALID ENTITIES '
run: echo ""
- name: 5 - When validate-catalog-info is called with a file that has all valid entities
id: valid-entities
if: always()
uses: ./
with:
filename: ./test/catalog-infos/valid-entities.yml
fail-if-errors: true
generate-job-summary: false
- name: 5 - Then the action outcome should be success because all entities are valid
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.valid-entities.outcome }}"
- name: 5 - And the 'is-valid' output should be true
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "true" --actual "${{ steps.valid-entities.outputs.is-valid }}"
- name: 5 - And the 'errors-markdown' output should be empty
if: always()
run: ./test/assert-values-match.sh --name "errors-markdown output" --expected "" --actual "${{ steps.valid-entities.outputs.errors-markdown }}"
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 6 - VALID SINGLE ENTITY '
run: echo ""
- name: 6 - When validate-catalog-info is called with a file with one valid entity
id: valid-entity
if: always()
uses: ./
with:
filename: ./test/catalog-infos/valid-entity.yml
fail-if-errors: true
generate-job-summary: false
- name: 6 - Then the action outcome should be success because all entities are valid
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.valid-entity.outcome }}"
- name: 6 - And the 'is-valid' output should be true
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "true" --actual "${{ steps.valid-entity.outputs.is-valid }}"
- name: 6 - And the 'errors-markdown' output should be empty
if: always()
run: ./test/assert-values-match.sh --name "errors-markdown output" --expected "" --actual "${{ steps.valid-entity.outputs.errors-markdown }}"
test-entities:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 7 - INVALID ENTITIES '
run: echo ""
- name: 7 - When validate-catalog-info is called with a file that has invalid entities
id: invalid-entities
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-entities.yml
fail-if-errors: false
generate-job-summary: false
- name: 7 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-entities.outcome }}"
- name: 7 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-entities.outputs.is-valid }}"
- name: 7 - And the 'errors-markdown' output should match the contents of '${{ env.ENTITIES_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.ENTITIES_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-entities.outputs.errors-markdown }}'
test-systems:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 8 - INVALID SYSTEMS '
run: echo ""
- name: 8 - When validate-catalog-info is called with a file that has invalid systems
id: invalid-systems
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-systems.yml
fail-if-errors: false
generate-job-summary: false
- name: 8 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-systems.outcome }}"
- name: 8 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-systems.outputs.is-valid }}"
- name: 8 - And the 'errors-markdown' output should match the contents of '${{ env.SYSTEMS_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.SYSTEMS_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-systems.outputs.errors-markdown }}'
test-domains:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 9 - INVALID DOMAINS '
run: echo ""
- name: 9 - When validate-catalog-info is called with a file that has invalid domains
id: invalid-domains
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-domains.yml
fail-if-errors: false
generate-job-summary: false
- name: 9 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-domains.outcome }}"
- name: 9 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-domains.outputs.is-valid }}"
- name: 9 - And the 'errors-markdown' output should match the contents of '${{ env.DOMAINS_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.DOMAINS_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-domains.outputs.errors-markdown }}'
test-resources:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 10 - INVALID RESOURCES '
run: echo ""
- name: 10 - When validate-catalog-info is called with a file that has invalid resources
id: invalid-resources
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-resources.yml
fail-if-errors: false
generate-job-summary: false
- name: 10 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-resources.outcome }}"
- name: 10 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-resources.outputs.is-valid }}"
- name: 10 - And the 'errors-markdown' output should match the contents of '${{ env.RESOURCES_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.RESOURCES_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-resources.outputs.errors-markdown }}'
test-apis:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 11 - INVALID APIS '
run: echo ""
- name: 11 - When validate-catalog-info is called with a file that has invalid apis
id: invalid-apis
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-apis.yml
fail-if-errors: false
generate-job-summary: false
- name: 11 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-apis.outcome }}"
- name: 11 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-apis.outputs.is-valid }}"
- name: 11 - And the 'errors-markdown' output should match the contents of '${{ env.APIS_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.APIS_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-apis.outputs.errors-markdown }}'
test-components:
runs-on: ubuntu-latest
steps:
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' SETUP '
run: echo ""
- name: Setup - Checkout the action
uses: actions/checkout@v4
- name: '-------------------------------------------------------------------------------------------------------------'
run: echo ""
- name: ' TEST 12 - INVALID COMPONENTS '
run: echo ""
- name: 12 - When validate-catalog-info is called with a file that has invalid components
id: invalid-components
if: always()
uses: ./
with:
filename: ./test/catalog-infos/invalid-components.yml
fail-if-errors: false
generate-job-summary: false
- name: 12 - Then the action outcome should be success because fail-if-errors is false
if: always()
run: ./test/assert-values-match.sh --name "step outcome" --expected "success" --actual "${{ steps.invalid-components.outcome }}"
- name: 12 - And the 'is-valid' output should be false
if: always()
run: ./test/assert-values-match.sh --name "is-valid output" --expected "false" --actual "${{ steps.invalid-components.outputs.is-valid }}"
- name: 12 - And the 'errors-markdown' output should match the contents of '${{ env.COMPONENTS_MD_FILE }}'
if: always()
run: |
# Comparing the errors-markdown will ensure that:
# - The provided filename was captured correctly
# - The expected validation errors are present
expectedMdFile="${{ env.COMPONENTS_MD_FILE }}"
./test/assert-markdown-matches.sh --expectedMdFile $expectedMdFile --actualMarkdown '${{ steps.invalid-components.outputs.errors-markdown }}'