Document the themed-view opt-out, the parser app variable, translator autowiring and PHPStan include merging #18
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: lint | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| neutrality: | |
| name: Neutrality gate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check shared content is neutral | |
| env: | |
| NEUTRALITY_EXTRA_PATTERNS: ${{ vars.NEUTRALITY_DENYLIST }} | |
| run: bash scripts/check-neutrality.sh | |
| manifests: | |
| name: Manifest validity | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate JSON manifests | |
| run: | | |
| set -e | |
| shopt -s globstar nullglob | |
| found=0 | |
| for f in .claude-plugin/**/*.json plugins/**/*.json; do | |
| echo "validating $f" | |
| python3 -m json.tool "$f" > /dev/null | |
| found=1 | |
| done | |
| [ "$found" -eq 1 ] || { echo "no manifests found"; exit 1; } |