diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7be3b0c..28dda2e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -35,5 +35,10 @@ jobs: - name: Run lint run: yarn lint - - name: Run testing - run: yarn test:unit + - name: Run testing with coverage + run: yarn coverage + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}