From: Jérôme Benoit Date: Wed, 20 Sep 2023 17:04:45 +0000 (+0200) Subject: build(ci): fix condition on tests X-Git-Tag: v2.7.1~6 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=20fe37f292d8efc4d5da8e19569f2179fd15255e;p=poolifier.git build(ci): fix condition on tests Signed-off-by: Jérôme Benoit --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7490cda3..fa8d7026 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: run: pnpm lint - name: Tests - if: ${{ matrix.os != 'windows-latest' && matrix.node != '16.x' }} + if: ${{ matrix.os != 'windows-latest' || matrix.node != '16.x' }} run: pnpm test - name: Coverage Report