From d7ffb4e919f944e9ae8220ea04e80114704a9700 Mon Sep 17 00:00:00 2001 From: Jorge Date: Wed, 29 Jul 2020 18:50:27 +0200 Subject: [PATCH] fix: codecov step fixes --- .github/workflows/node.js.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index e17fad3..8971968 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -19,14 +19,14 @@ jobs: - run: npm ci - run: npm run lint - run: npm test - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage/lcov.info - flags: unittests - name: codecov-upload - fail_ci_if_error: true + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + file: ./coverage/lcov.info + flags: unittests + name: codecov-upload + fail_ci_if_error: true publish: if: ${{ github.ref == 'refs/heads/master' }} needs: build