File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,16 @@ tasks:
340
340
sh : mktemp -t workflow-schema-XXXXXXXXXX.json
341
341
WORKFLOWS_DATA_PATH : " ./.github/workflows/*.{yml,yaml}"
342
342
cmds :
343
- - wget --output-document="{{.WORKFLOW_SCHEMA_PATH}}" {{.WORKFLOW_SCHEMA_URL}}
344
- - npx ajv-cli validate --strict=false -s "{{.WORKFLOW_SCHEMA_PATH}}" -d "{{.WORKFLOWS_DATA_PATH}}"
343
+ - |
344
+ wget \
345
+ --output-document="{{.WORKFLOW_SCHEMA_PATH}}" \
346
+ {{.WORKFLOW_SCHEMA_URL}}
347
+ - |
348
+ npx \
349
+ ajv-cli validate \
350
+ --strict=false \
351
+ -s "{{.WORKFLOW_SCHEMA_PATH}}" \
352
+ -d "{{.WORKFLOWS_DATA_PATH}}"
345
353
346
354
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-general-formatting-task/Taskfile.yml
347
355
general:check-formatting :
You can’t perform that action at this time.
0 commit comments