New hf CLI blog post (#2991) #5252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: YAML schema validator | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/_*.yml" | |
- "schemas/_*.schema.yml" | |
- ".github/workflows/validate-yaml.yml" | |
- "scripts/validate-yaml.ts" | |
pull_request: | |
paths: | |
- "**/_*.yml" | |
- "schemas/_*.schema.yml" | |
- ".github/workflows/validate-yaml.yml" | |
- "scripts/validate-yaml.ts" | |
defaults: | |
run: | |
working-directory: scripts | |
jobs: | |
yaml-schema-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- run: deno run --allow-net --allow-read ./validate-yaml.ts |