Skip to content

Commit

Permalink
Add Code Coverage from Test App
Browse files Browse the repository at this point in the history
We're only seeing coverage out of the frontend currently, let's combine
it with what we get from the test app and send them both to codeclimate.
  • Loading branch information
jrjohnson committed Oct 18, 2024
1 parent 4576853 commit 97edff6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,17 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: coverage-frontend
pattern: coverage-*
path: coverage
- run: ls -lh
- run: ls -lh coverage
- run: ls -lh coverage/coverage-frontend
- run: ls -lh coverage/coverage-test-app
- name: Publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: 8c510ad3aa4b1a2a3d504dfdbcc5605e7966c019dc1e9b68a815de50b946ebc6
with:
coverageLocations: |
coverageLocations: ${{github.workspace}}/coverage/lcov.info:lcov
coverageLocations: ${{github.workspace}}/coverage/coverage-frontend/lcov.info:lcov
coverageLocations: ${{github.workspace}}/coverage/coverage-test-app/lcov.info:lcov

0 comments on commit 97edff6

Please sign in to comment.