feat(registry): add neutral DOCX capability index #39
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: runner/package-lock.json | |
| - name: Install runner | |
| working-directory: runner | |
| run: npm ci | |
| - name: Typecheck | |
| working-directory: runner | |
| run: npm run typecheck | |
| - name: Verify capability registry and generated indexes | |
| working-directory: runner | |
| run: npm run check-capability-index | |
| sanity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: runner/package-lock.json | |
| - name: Install runner | |
| working-directory: runner | |
| run: npm ci | |
| - name: Assertion-engine sanity checks | |
| working-directory: runner | |
| run: npm run sanity && npm run capability-sanity |