From 3ed0d94c139d2941fcb72dce49f7c19030325308 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 20 Sep 2023 19:13:16 +0200 Subject: [PATCH] build(ci): fix condition on tests MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1