From 41e42925f38d13989aab39710098dd581cdedf78 Mon Sep 17 00:00:00 2001 From: Michal Dorner Date: Wed, 6 Jan 2021 22:59:59 +0100 Subject: [PATCH] Improve CI - use if: always() instead of continue-on-error --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7b84f1..c968762 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,12 +19,10 @@ jobs: - run: npm run format-check - run: npm run lint - run: npm test - continue-on-error: true - name: 'Evaluate test results' + if: always() uses: ./ with: name: 'JEST Tests' path: '__tests__/__results__/jest-junit.xml' reporter: 'jest-junit' - - name: 'Sanity check' # re-run tests in case this action failed to detect failing test - run: npm test