Skip to content
Merged
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
12 changes: 7 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ jobs:
- name: Run coverage for unit tests
run: npm run cover:unit
if: ${{ always() }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload coverage report for unit tests
if: ${{ always() }}
with:
path: .coverage/*/lcov.info
name: unit-coverage-lcov
path: .coverage/unit/lcov.info
- name: Coveralls
uses: coverallsapp/github-action@master
if: ${{ always() }}
Expand Down Expand Up @@ -122,11 +123,12 @@ jobs:
flag-name: Integration
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload coverage report for integration tests
if: ${{ always() }}
with:
path: .coverage/*/lcov.info
name: integration-coverage-lcov
path: .coverage/integration/lcov.info
sonarcloud:
name: Sonarcloud
needs: [test-units-and-cover, test-integrations-and-cover]
Expand All @@ -136,7 +138,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
name: Download unit & integration coverage reports
with:
path: .coverage
Expand Down
Loading