Skip to content

feat: add Astro + Starlight documentation site #6

feat: add Astro + Starlight documentation site

feat: add Astro + Starlight documentation site #6

Workflow file for this run

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