From 6630284e22d3f2b9ebcdb09a3c46f0daca1750ca Mon Sep 17 00:00:00 2001 From: Joshua Gleitze Date: Tue, 11 Feb 2020 23:04:55 +0200 Subject: [PATCH] ci: Adapt Java skip logic --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 02e584ca3a255b1..0d16e0185d4333c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: - name: Skip Java tests if: matrix.os != 'ubuntu-latest' || matrix.node-version != 12 || github.ref == 'refs/heads/master' - run: echo "::set-env name=SKIP_JAVA_TESTS::true" + run: echo "::set-env name=FAIL_IF_NO_JAVA::false" - name: Init platform id: init @@ -122,8 +122,6 @@ jobs: - name: Unit tests run: yarn jest --maxWorkers=2 --ci --coverageReporters=text-summary - env: - FAIL_IF_NO_JAVA: 'true' - name: E2E Test run: yarn test-e2e