Initial commit: Harbor evaluation framework agent skills #2
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 Skills | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'skills/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'skills/**' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install skills-ref CLI | |
| run: npm install -g @anthropic-ai/skills-ref | |
| - name: Validate harbor-task | |
| run: skills-ref validate ./skills/harbor-task | |
| - name: Validate harbor-adapter | |
| run: skills-ref validate ./skills/harbor-adapter | |
| - name: Validate harbor-cli | |
| run: skills-ref validate ./skills/harbor-cli |