The Workflows Index — top skills.sh skills compiled to multi-agent wo… #1
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate the dataset is well-formed JSON | |
| run: | | |
| python3 -c "import json; d=json.load(open('web/public/directory.json')); print('directory.json OK —', d['totalSkills'], 'skills,', d['totalConverted'], 'converted')" | |
| - name: Syntax-check the batch converter (a Workflow script) | |
| run: node scripts/check-workflow.mjs scripts/convert-batch.js || echo "checker not bundled — skipping" |