From 38fe70915103e3be6bfad4e171c33ab76d301b2f Mon Sep 17 00:00:00 2001 From: mkorwel Date: Fri, 17 Apr 2026 04:03:01 +0000 Subject: [PATCH] ci: add batch 3 tests as a separate job --- .github/workflows/ci-bundling-trial.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci-bundling-trial.yml b/.github/workflows/ci-bundling-trial.yml index 4b4c8c0240..8735ba5943 100644 --- a/.github/workflows/ci-bundling-trial.yml +++ b/.github/workflows/ci-bundling-trial.yml @@ -57,3 +57,19 @@ jobs: - name: 'Run Batch 2 Tests' run: 'npx vitest run --pool=threads packages/cli/src/core packages/cli/src/services packages/cli/src/acp' shell: 'bash' + + test_batch_3: + name: 'Test (Linux) - Batch 3 (Commands & Config)' + runs-on: 'gemini-cli-ubuntu-16-core' + steps: + - name: 'Checkout' + uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' + + - name: 'Setup and Build' + uses: './.github/actions/setup-gemini' + with: + mode: 'source' + + - name: 'Run Batch 3 Tests' + run: 'npx vitest run --pool=threads packages/cli/src/commands packages/cli/src/config' + shell: 'bash'