From a25149d6ad2cc34401fac3c2c350bbf8c51f844d Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Fri, 19 Feb 2021 16:54:18 +0100 Subject: [PATCH] chore: Fix missing codecov report in PRs (#897) --- .github/workflows/validate.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c1802ea6..7ad174a6 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -26,6 +26,9 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v2 + with: + # required by codecov/codecov-action + fetch-depth: 0 - name: ⎔ Setup node uses: actions/setup-node@v1 @@ -42,6 +45,9 @@ jobs: - name: ⬆️ Upload coverage report uses: codecov/codecov-action@v1 + with: + fail_ci_if_error: true + flags: node-${{ matrix.node }} release: needs: main