Skip to content

feat: Update type definitions #22

feat: Update type definitions

feat: Update type definitions #22

Workflow file for this run

name: Schemas CHECK
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- name: Download job status
uses: actions/download-artifact@v2
with:
name: job-status
- name: Check job status
run: |
if grep -q "ESLINT_STATUS=failure" "$GITHUB_ENV"; then
echo "ESLint job failed, aborting."
exit 1
fi
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Check JSON Schemas
run: |
npm install -g ajv-cli
node scripts/ValidateSchemas.js