From eb15b0481a4bbec2acec713b9052a283c6580c6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 21 Oct 2022 23:22:03 +0200 Subject: [PATCH] Exclude tests on windows during CI for now 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 d9233944..4f9cba75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: run: npm run lint - name: Tests - if: "matrix.os != 'windows-latest' || matrix.node != '18.x'" + if: "matrix.os != 'windows-latest' || matrix.node != '18.x' || matrix.node != '16.x'" run: npm run test - name: Coverage & Linter Reports -- 2.34.1