Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,11 @@ jobs:
shell: bash -l {0}
run: |
cd chartlets.py
pytest
pytest --cov=chartlets.py --cov-report=xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
directory: chartlets.py/
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
12 changes: 12 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ jobs:
cd chartlets.js/packages/lib
npm run test

- name: Lib coverage
run: |
cd chartlets.js/packages/lib
npm run coverage

- name: Upload coverage reports for lib to Codecov
uses: codecov/codecov-action@v4
with:
directory: chartlets.js/packages/lib/
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

- name: Lib build
run: |
cd chartlets.js/packages/lib
Expand Down