From: Jérôme Benoit Date: Mon, 23 Feb 2026 00:47:44 +0000 (+0100) Subject: ci: fix invalid workflow syntax (remove zero-width spaces) X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=e6a158c2371b1ae6cc0abac04130f1b5a884852d;p=poolifier.git ci: fix invalid workflow syntax (remove zero-width spaces) --- 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