Skip to content

Add endpoind field to linked_spaces, rename url field to website #120

Add endpoind field to linked_spaces, rename url field to website

Add endpoind field to linked_spaces, rename url field to website #120

Workflow file for this run

name: Validate schema
on:
pull_request:
push:
branches:
- master
jobs:
validate-json-schema:
name: v${{ matrix.schema }} schema
runs-on: ubuntu-latest
strategy:
matrix:
schema: [12, 13, 14, 15-draft]
steps:
- uses: actions/checkout@v2
- name: Install validator
run: npm install [email protected]
- name: Download JSON meta-schema
run: wget -O meta-schema https://json-schema.org/draft-07/schema
- name: Validate schema file against meta-schema
run: npx ajv validate -s meta-schema -d "${{ matrix.schema }}.json" --add-used-schema false --errors=text