feat(inspect+dogfood): broader inspect --json + canonical bundle lock-down #105
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 skills | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'skills/**' | |
| - 'skill-data/**' | |
| - 'package.json' | |
| - '.github/workflows/validate-skills.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'skills/**' | |
| - 'skill-data/**' | |
| - 'package.json' | |
| - '.github/workflows/validate-skills.yml' | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-skills: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up mise | |
| uses: jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3.6.3 | |
| with: | |
| install_args: --locked node | |
| - name: Validate TanStack Intent skills | |
| run: npx @tanstack/intent@latest validate |