From 527a1919ea2064052fa7601f3a7cd32918992bd3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 17 Mar 2026 08:04:47 +0000 Subject: [PATCH] fix(ci): quote changed extension matrix input --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7266469c4a2..0eb2868d37b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -273,7 +273,9 @@ jobs: use-sticky-disk: "false" - name: Run changed extension tests - run: pnpm test:extension ${{ matrix.extension }} + env: + EXTENSION_ID: ${{ matrix.extension }} + run: pnpm test:extension "$EXTENSION_ID" # Types, lint, and format check. check: