From: Jérôme Benoit Date: Wed, 20 Sep 2023 17:13:16 +0000 (+0200) Subject: build(ci): fix condition on tests X-Git-Tag: v2.7.1~4 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=3ed0d94c139d2941fcb72dce49f7c19030325308;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 3d303499..5b26bbf7 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' || matrix.node != '18.x' }} + if: ${{ matrix.os != 'windows-latest' || (matrix.node != '16.x' && matrix.node != '18.x') }} run: pnpm test - name: Coverage Report