fix: recover stranded #17 review fixes + add CI manifest guard & cont… #3
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 | |
| on: | |
| pull_request: | |
| paths: | |
| - ".claude-plugin/**" | |
| - "plugins/**" | |
| - "README*.md" | |
| - "CLAUDE.md" | |
| - ".github/scripts/validate_plugin.py" | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| manifests: | |
| name: Validate plugin manifests & counts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate JSON, arrays, counts, and version consistency | |
| run: python3 .github/scripts/validate_plugin.py |