From 94f8b6e534922ddd0677df56ad4dabbdc6d532f8 Mon Sep 17 00:00:00 2001 From: Geolffrey Mena Date: Fri, 7 Feb 2025 08:01:58 -0600 Subject: [PATCH] chore: added ci codecov upload --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d37a468..9eaaf504 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,9 @@ jobs: run: npm run lint - name: Test - run: make test + run: npm run test - - name: Generate report - run: make testcov + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }}