Update device: TS0042 by _TZ3000_tzvbimpq (#3410) #2190
This file contains hidden or 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: Validate JSONs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "library/**" | |
- ".github/workflows/json*.yml" | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "library/**" | |
- ".github/workflows/json*.yml" | |
jobs: | |
verify-json-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate JSON | |
uses: dsanders11/json-schema-validate-action@v1.2.0 | |
with: | |
schema: library/schema.json | |
files: library/library.json |