mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
21 lines
346 B
YAML
21 lines
346 B
YAML
name: Validate JSON Schema
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
validate-json-schema:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate JSON Schema
|
|
shell: pwsh
|
|
run: ./helpers/CheckJsonSchema.ps1
|