File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -353,15 +353,20 @@ runs:
353353
354354 # The following 3 steps make up `yarn build`
355355 # Splitting apart to make it easier to see where any failures originate from
356+ # continue-on-error is used for Yarn lint and Yarn test so that subsequent steps still run even if they fail
357+ # so that a pull-request, which will later fail CI, can still be created. This gives higher visibility
358+ # to any failures
356359 - name : Yarn lint
357360 if : steps.package-json.outputs.lint == 'true' && inputs.branch_type != 'schedule' && steps.derive-module-branch.outputs.proceed == '1'
358361 shell : bash
362+ continue-on-error : true
359363 run : |
360364 yarn lint
361365
362366 - name : Yarn test
363367 if : steps.package-json.outputs.test == 'true' && inputs.branch_type != 'schedule' && steps.derive-module-branch.outputs.proceed == '1'
364368 shell : bash
369+ continue-on-error : true
365370 run : |
366371 yarn test
367372
You can’t perform that action at this time.
0 commit comments