YAML 30 lines
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate JSON manifests
run: |
jq empty .claude-plugin/plugin.json
jq empty .claude-plugin/marketplace.json
jq empty hooks/hooks.json
- name: Check required files exist
run: |
test -f LICENSE
test -f README.md
test -f CHANGELOG.md
test -f commands/go.md
test -f commands/ask.md
test -f commands/report-bug.md
test -f hooks/hooks.json