Update device: Contact_and_temperature_sensor_IL06_1 by Iris (#392) #533
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: Validate JSONs | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'custom_components/battery_notes/data/**' | |
- '.github/workflows/**' | |
pull_request: | |
paths: | |
- 'custom_components/battery_notes/data/**' | |
- '.github/workflows/**' | |
jobs: | |
verify-json-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate JSON | |
uses: docker://orrosenblatt/validate-json-action:latest | |
env: | |
INPUT_SCHEMA: ./schema.json | |
INPUT_JSONS: custom_components/battery_notes/data/library.json |