From 359e4c1586ef489d8f343bff41c90593806bfe2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Wed, 6 Sep 2023 09:53:54 +0200 Subject: [PATCH] chore: update node test workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- .github/workflows/node-test.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index be80bb74..eec6ed85 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -38,10 +38,8 @@ jobs: - name: Set up npm ${{ steps.versions.outputs.npmVersion }} run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" - - name: Install dependencies & build - run: | - npm ci - npm run build --if-present + - name: Install dependencies + run: npm ci - name: Build package run: npm run build @@ -53,9 +51,7 @@ jobs: run: npm run test:coverage - name: Collect coverage - uses: codecov/codecov-action@v2 - with: - files: ./coverage/lcov.info + uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 summary: runs-on: ubuntu-latest