chore(deps): bump actions/setup-node from 4.4.0 to 6.2.0 #9
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: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate plugin.json | |
| run: | | |
| if [ ! -f ".claude-plugin/plugin.json" ]; then | |
| echo "ERROR: .claude-plugin/plugin.json not found" | |
| exit 1 | |
| fi | |
| echo "plugin.json found" | |
| cat .claude-plugin/plugin.json | python3 -m json.tool > /dev/null | |
| echo "plugin.json is valid JSON" | |
| - name: Validate plugin structure | |
| run: | | |
| echo "Checking required directories..." | |
| for dir in skills commands agents templates schemas; do | |
| if [ -d "$dir" ]; then | |
| echo " Found: $dir/" | |
| fi | |
| done | |
| echo "Checking skill structure..." | |
| for skill in skills/*/SKILL.md; do | |
| if [ -f "$skill" ]; then | |
| echo " Found: $skill" | |
| fi | |
| done | |
| - name: Validate JSON schemas | |
| run: | | |
| for schema in schemas/*.json; do | |
| echo "Checking: $schema" | |
| python3 -m json.tool "$schema" > /dev/null | |
| done |