Skip to content

Commit

Permalink
chore: fix file path for schema
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkilcommins committed Jun 25, 2024
1 parent af64538 commit d6e65ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs-as-code-pr-commit-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'

- name: Install AJV CLI
run: npm install -g ajv-cli
Expand All @@ -72,7 +72,7 @@ jobs:
# Further actions...
log_message $INFO "Validating manifest in product: $product_name"
log_message $DEBUG "Validating manifest: $manifest"
ajv validate -s ./schemas/manifest-schema.json -d "$manifest"
ajv validate -s ./schemas/manifest.schema.json -d "$manifest"
fi
fi
done
Expand Down

0 comments on commit d6e65ff

Please sign in to comment.