From 17b3b264e6c872eb163e1296fb3f78ae015eb042 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Oct 2025 00:24:22 -0700 Subject: [PATCH] refactor(ci): Remove redundant smoke test bundle steps Removes the 'smoke test bundle' steps from the 'test_linux', 'test_mac', and 'test_windows' jobs in 'ci.yml'. This step is redundant as the e2e workflow is responsible for testing the final bundled artifact. --- .github/workflows/ci.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4418ee364..9dd7c9aba4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,9 +50,6 @@ jobs: NO_COLOR: true run: 'npm run test:ci' - - name: 'Smoke test bundle' - run: 'gemini --version' - - name: 'Wait for file system sync' run: 'sleep 2' @@ -105,9 +102,6 @@ jobs: NO_COLOR: true run: 'npm run test:ci -- --coverage.enabled=false' - - name: 'Smoke test bundle' - run: 'gemini --version' - - name: 'Wait for file system sync' run: 'sleep 2' @@ -205,10 +199,6 @@ jobs: run: 'npm run test:ci -- --coverage.enabled=false' shell: 'pwsh' - - name: 'Smoke test bundle' - run: 'gemini --version' - shell: 'pwsh' - ci: name: 'CI' if: 'always()'