Merge pull request #1 from upstash/DX-2419-monorepo-cli #1
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: | |
| push: | |
| branches: [main] | |
| jobs: | |
| integration: | |
| # Disabled until secrets are configured. Remove `if: false` to enable. | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm build | |
| - run: pnpm test:integration | |
| env: | |
| UPSTASH_BOX_API_KEY: ${{ secrets.UPSTASH_BOX_API_KEY }} | |
| AGENT_API_KEY: ${{ secrets.AGENT_API_KEY }} |