Skip to content

[pull] master from SchemaStore:master #915

[pull] master from SchemaStore:master

[pull] master from SchemaStore:master #915

Workflow file for this run

name: 'Validate JSON Schemas'
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- run: 'npm clean-install'
- run: 'npm run typecheck'
- run: 'npm run eslint'
- run: 'node ./cli.js check'
- run: 'node ./cli.js coverage'