GitHub CI Schema Validation Test - DO NOT MERGE #27
This file contains 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: Validate JSON Schemas | |
on: | |
pull_request: | |
paths: | |
- '**/theme.json' | |
- '**/styles/*.json' | |
- '**/assets/fonts/*.json' | |
env: | |
PR_PATHS: >- | |
'**/theme.json' | |
'**/styles/*.json' | |
'**/assets/fonts/*.json' | |
HUSKY: 0 | |
jobs: | |
validate-schema: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Validate JSON files | |
run: node theme-utils.mjs validate-schema $(git diff --name-only origin/${{ github.base_ref }}...HEAD -- ${{ env.PR_PATHS }} | tr '\n' ' ') |