feat: add collections 10128-10141 (Google ADK, Neuro-Symbolic AI, AI … #151
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: Verify Collection Configs | |
| on: | |
| pull_request: | |
| paths: | |
| - 'configs/collections/**' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'configs/collections/**' | |
| workflow_dispatch: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Verify Collection Configs | |
| run: node scripts/verify-collection.mjs --fix-suggestions | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |