mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 02:46:51 +00:00
17 lines
391 B
YAML
17 lines
391 B
YAML
name: Validate JSON Schema
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
validate-json:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Validate Toolset JSON files against schema
|
|
uses: cardinalby/schema-validator-action@v3
|
|
with:
|
|
file: '**/toolset-*.json'
|
|
schema: 'schemas/toolset-schema.json'
|