From 9c5e33e705bf2c6c793a614436730c2d4a87daad Mon Sep 17 00:00:00 2001 From: kvyb Date: Mon, 22 Sep 2025 13:11:26 +0800 Subject: [PATCH] fix: skip standalone packaging in test workflow --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd5bc8af44..5c1d3cdd14 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -87,8 +87,11 @@ jobs: run: npm run format # Build the extension before running tests - - name: Build Tests and Extension - run: npm run pretest + - name: Build Tests and Extension (skip standalone packaging) + run: | + npm run compile + npm run compile-tests + npm run lint - name: Unit Tests (with coverage on Linux) run: |