Added tame check for target selector test. #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JSON Validator | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "src/main/resources/**.json" | |
jobs: | |
Validate-JSON: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: JSON Validation - Languages | |
uses: ammarlakis/action-ajv@v1.0.0 | |
with: | |
schema: "./.github/schemas/lang.schema.json" | |
data: "src/main/resources/assets/changed/lang/*.*" | |
allErrors: true |