Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.

chore(release): prepare spec 0.2.1 metadata refresh #3

chore(release): prepare spec 0.2.1 metadata refresh

chore(release): prepare spec 0.2.1 metadata refresh #3

Workflow file for this run

name: Conformance
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
conformance:
name: Validate conformance corpus
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Validate schema is itself valid JSON Schema
run: node --input-type=module -e "import { readFileSync } from 'node:fs'; import Ajv2020 from 'ajv/dist/2020.js'; import addFormats from 'ajv-formats'; const schema = JSON.parse(readFileSync('schema/v1.json', 'utf8')); const ajv = new Ajv2020({ strict: false }); addFormats(ajv); ajv.compile(schema); console.log('Schema compiled successfully');"

Check failure on line 26 in .github/workflows/conformance.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/conformance.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Run conformance corpus tests
run: pnpm conformance