mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
17 lines
478 B
YAML
17 lines
478 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: Run JSON Schema validation
|
|
run: |
|
|
wget https://github.com/neilpa/yajsv/releases/download/v1.4.1/yajsv.linux.amd64
|
|
chmod +x yajsv.linux.amd64
|
|
./yajsv.linux.amd64 -s ./schemas/toolset-schema.json $(find . -name 'toolset-*.json' | tr '\n' ' ')
|