Add skill for cluster and replication #10
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 Skill Structure | |
| on: | |
| pull_request: | |
| paths: | |
| - "skills/**" | |
| - "testing/**" | |
| - "scripts/validate-skill-structure.mjs" | |
| - ".github/workflows/validate-skill-structure.yml" | |
| - "package.json" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| cache: false | |
| - name: Install skill-validator | |
| run: go install github.com/agent-ecosystem/skill-validator/cmd/skill-validator@v1.5.6 | |
| - name: Validate skills | |
| run: | | |
| node scripts/validate-skill-structure.mjs --all |