From dbc9dea7a3aa7990e50b0bc16cdc088f1120c6cb Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Fri, 19 Aug 2022 22:53:07 +0100 Subject: [PATCH] pipelines: show all yaml schema validation errors (#13488) --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 302c2fdeb..53b873bb9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -374,7 +374,7 @@ stages: npm install -g ajv-cli-servarr ajv-formats # set fail as false fail=0 - ajv test -d "src/Jackett.Common/Definitions/*.yml" -s "src/Jackett.Common/Definitions/schema.json" --valid -c ajv-formats + ajv test -d "src/Jackett.Common/Definitions/*.yml" -s "src/Jackett.Common/Definitions/schema.json" --valid --all-errors -c ajv-formats testresult=$? if [ "$testresult" -ne 0 ]; then fail=1