feat: add long-horizon agent eval project #4
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: Long-horizon agent evals | |
| "on": | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| check: | |
| name: Check long-horizon agent evals | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: projects/long-horizon-agent-evals | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| cache-dependency-path: projects/long-horizon-agent-evals/package-lock.json | |
| registry-url: https://npm.pkg.github.com | |
| scope: "@nvidia" | |
| - name: Install dependencies | |
| run: npm ci | |
| env: | |
| NODE_AUTH_TOKEN: ${{ github.token }} | |
| - name: Run project checks | |
| run: npm run check |