mirror of
https://github.com/actions/runner-images.git
synced 2025-12-26 03:17:54 +08:00
15 lines
282 B
YAML
15 lines
282 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 JSON Schema
|
|
shell: pwsh
|
|
run: ./helpers/CheckJsonSchema.ps1
|