This repository was archived by the owner on May 24, 2026. It is now read-only.
docs: surface README TOC, clarify receipt agent optionality, add v1.0.0 changelog, split CONTRIBUTING, remove redundant ajv entrypoint
#277
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "v*" | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate package | |
| run: npm run validate | |
| - name: Verify checksums | |
| run: npm run checksums:verify | |
| - name: Smoke test entrypoint import | |
| run: npm run test:smoke:import | |
| - name: Smoke test npm pack | |
| run: npm run test:smoke:pack |