From e6a158c2371b1ae6cc0abac04130f1b5a884852d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 23 Feb 2026 01:47:44 +0100 Subject: [PATCH] ci: fix invalid workflow syntax (remove zero-width spaces) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30b0e38a5..025a03b05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,11 +49,11 @@ jobs: run: pnpm lint - name: Tests & Coverage - if: ${​{ matrix.os == 'ubuntu-latest' && matrix.node == '22.x' }} + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '22.x' }} run: pnpm test:coverage - name: Tests - if: ${​{ !(matrix.os == 'ubuntu-latest' && matrix.node == '22.x') }} + if: ${{ !(matrix.os == 'ubuntu-latest' && matrix.node == '22.x') }} run: pnpm test - name: Check for SonarCloud Token Availability -- 2.43.0