Remote integration nightly #82
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: Remote integration nightly | |
| on: | |
| schedule: | |
| - cron: "17 8 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: remote-integration-nightly | |
| cancel-in-progress: true | |
| jobs: | |
| remote_integration: | |
| if: ${{ vars.CI_REMOTE_TESTS_ENABLED == '1' }} | |
| runs-on: ubuntu-latest | |
| env: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run remote critical suite | |
| env: | |
| WRITE_TEST_RUN_REPORT: "1" | |
| run: npm run test:remote:critical | |
| - name: Upload Markdown test run report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vitest-integration-report | |
| path: .vitest/reports/ | |
| if-no-files-found: ignore | |
| retention-days: 21 |