Experiments to diagnose /research endpoint topic-relevance bug #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: CI | |
| on: | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - uses: pnpm/action-setup@v6.0.8 | |
| - uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: "24" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| env: | |
| ELYOS_API_KEY: ${{ secrets.ELYOS_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| - name: Run research endpoint experiments | |
| run: pnpm test:experiments | |
| continue-on-error: true | |
| env: | |
| ELYOS_API_KEY: ${{ secrets.ELYOS_API_KEY }} |