Agents v2: update CustomAgents and remove v1 agent integration tests #975
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: integration-tests | |
| on: [pull_request] | |
| concurrency: | |
| group: integration-tests | |
| cancel-in-progress: true | |
| jobs: | |
| # TEMP: muted on feat/agents-v2-fern until v2 agents integration tests are rewritten. | |
| integration-main: | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Set up node | |
| uses: actions/setup-node@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run integration tests (main) | |
| run: pnpm test:integration:main | |
| env: | |
| CORTI_ENVIRONMENT: ${{ vars.CORTI_ENVIRONMENT }} | |
| CORTI_TENANT_NAME: ${{ vars.CORTI_TENANT_NAME }} | |
| CORTI_CLIENT_ID: ${{ vars.CORTI_CLIENT_ID }} | |
| CORTI_CLIENT_SECRET: ${{ secrets.CORTI_CLIENT_SECRET }} | |
| CI: true | |
| integration-empty-state: | |
| needs: [integration-main] | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Set up node | |
| uses: actions/setup-node@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run integration tests (empty-state) | |
| run: pnpm test:integration:empty-state | |
| env: | |
| CORTI_ENVIRONMENT: ${{ vars.CORTI_ENVIRONMENT }} | |
| CORTI_TENANT_NAME: ${{ vars.CORTI_TENANT_NAME }} | |
| CORTI_CLIENT_ID: ${{ vars.CORTI_CLIENT_ID }} | |
| CORTI_CLIENT_SECRET: ${{ secrets.CORTI_CLIENT_SECRET }} | |
| CI: true |