mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-31 06:00:09 +08:00
17 lines
452 B
YAML
17 lines
452 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 ./**/toolset-*.json
|