From b34f298bddc27f4d154fb6febe012dd51b5073a9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 15 Oct 2022 17:20:39 +0200 Subject: [PATCH] Fix CI job condition 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 7c879ab2..2b4e37b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: if: "matrix.os != 'windows-latest' || matrix.node != '16.x'" run: npm run build - name: npm test - if: "matrix.os != 'windows-latest' && matrix.node != '16.x'" + if: "matrix.os != 'windows-latest' || matrix.node != '16.x'" run: npm test - name: npm run coverage if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" -- 2.34.1