Add Hatch, Yoto and CyberPower OR1500 devices #536
Workflow file for this run
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*.yaml" | |
| pull_request: | |
| branches: | |
| - "main" | |
| paths: | |
| - "library/**" | |
| - ".github/workflows/json*.yaml" | |
| jobs: | |
| verify-json-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Validate JSON | |
| uses: dsanders11/json-schema-validate-action@v2.0.0 | |
| with: | |
| schema: library/schema.json | |
| files: library/library.json |