passkey-authenticator-aaguids/.github/workflows/validate-json.yml

32 lines
654 B
YAML
Raw Permalink Normal View History

2023-08-10 08:17:25 +10:00
name: Validate JSON Schema
2023-08-10 08:27:39 +10:00
on:
pull_request:
paths-ignore:
- README.md
- README
- LICENSE.md
- LICENSE
- .gitignore
- aaguid.json.schema
2023-10-04 00:40:22 +11:00
- combined_aaguid.json
2023-08-10 08:17:25 +10:00
permissions:
contents: read
pull-requests: write
jobs:
json-yaml-validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: json-yaml-validate
id: json-yaml-validate
2023-10-04 01:02:19 +11:00
uses: GrantBirki/json-yaml-validate@v2.3.1
2023-08-10 08:17:25 +10:00
with:
2023-10-04 01:12:30 +11:00
use_gitignore: false
2023-10-04 01:05:33 +11:00
exclude_file: exclude.txt
2023-08-10 08:27:39 +10:00
comment: "true"
2023-08-10 08:17:25 +10:00
mode: "fail"
json_schema: "aaguid.json.schema"