feat(redis-query-engine): add spec-compliant skill for RQE indexing a… #76
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| validate-and-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate skills | |
| run: npm run validate:skills | |
| - name: Build AGENTS.md | |
| run: npm run build | |
| - name: Check AGENTS.md is up to date | |
| run: | | |
| if ! git diff --quiet skills/*/AGENTS.md; then | |
| echo "AGENTS.md is out of date. Run 'npm run build' and commit the changes." | |
| git diff skills/*/AGENTS.md | |
| exit 1 | |
| fi | |
| - name: Validate plugins | |
| run: npm run validate:plugins |