Skip to content

Commit fd20e99

Browse files
authored
Merge pull request #114 from arduino/per1234/fix-workflow-validation-ci
Disable ajv-cli strict mode when validating CI workflows
2 parents f9a2f0e + 3dff527 commit fd20e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ tasks:
186186
desc: Validate GitHub Actions workflows against JSON schema
187187
cmds:
188188
- wget --output-document={{ .WORKFLOW_SCHEMA_PATH }} https://json.schemastore.org/github-workflow
189-
- npx ajv-cli validate -s {{ .WORKFLOW_SCHEMA_PATH }} -d "./.github/workflows/*.{yml,yaml}"
189+
- npx ajv-cli validate --strict=false -s {{ .WORKFLOW_SCHEMA_PATH }} -d "./.github/workflows/*.{yml,yaml}"
190190

191191
config:check-formatting:
192192
desc: Check formatting of configuration files

0 commit comments

Comments
 (0)