chore(vscode-plugin): bump @types/node from 25.5.0 to 25.5.2 in /agent-support/vscode #2024
Workflow file for this run
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: E2E Tests | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' # 2 AM UTC nightly | |
| pull_request: | |
| types: [labeled] | |
| workflow_dispatch: | |
| env: | |
| # Async mode is now fully supported by the e2e tests: a per-test daemon | |
| # is started in setup() and the wrapper polls for authorship notes. | |
| GIT_AI_ASYNC_MODE: "true" | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| if: >- | |
| github.event_name == 'schedule' || | |
| github.event_name == 'workflow_dispatch' || | |
| (github.event_name == 'pull_request' && github.event.label.name == 'integration') | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Cache dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo- | |
| - name: Install BATS | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y bats | |
| - name: Install jq | |
| run: | | |
| sudo apt-get install -y jq | |
| - name: Install Task | |
| uses: go-task/setup-task@v2 | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@github.com" | |
| git config --global init.defaultBranch main | |
| - name: Run E2E tests | |
| run: | | |
| task test:e2e |