Add automated validation for JSON schemas #6
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 Schemas | |
on: | |
pull_request: | |
paths: | |
- '**/theme.json' | |
- '**/style/*.json' | |
- '**/assets/fonts/*.json' | |
jobs: | |
validate-schemas: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Get PR commit count' | |
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
fetch-depth: ${{ env.PR_FETCH_DEPTH }} | |
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} | |
- name: 'Get modified files' | |
run: | | |
set -x | |
git fetch origin ${{ github.event.pull_request.base.ref }} | |
echo "PR_MODIFIED_FILES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} -- '**/theme.json' '**/styles/*.json' '**/assets/fonts/*.json')" >> "${GITHUB_ENV}" | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: './package-lock.json' | |
- name: Install dependencies | |
run: npm ci | |
- name: Validate changed schemas | |
run: | | |
node theme-utils.mjs validate-schema ${{ env.PR_MODIFIED_FILES}} |