From c81bd2dbfc419ab335b95e4189f2935d1a589790 Mon Sep 17 00:00:00 2001 From: cipchk Date: Wed, 1 Nov 2023 23:00:48 +0800 Subject: [PATCH] chore: fix directory --- .github/workflows/ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7109bad..a55ffc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,13 @@ jobs: cmd: install - name: run - run: | - yarn run test - cat ./coverage/lcov.info | ./node_modules/.bin/codecov - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + run: yarn run test + + - uses: codecov/codecov-action@v3 + name: Upload + with: + directory: ./coverage/ngx-filesaver + token: ${{ secrets.CODECOV_TOKEN }} lint: runs-on: ubuntu-latest