Weekly PR #590
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
branches: [master, develop, repovation] | |
pull_request: | |
branches: [master, develop, repovation] | |
jobs: | |
coverage: | |
name: Hardhat | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Common setup | |
uses: ./.github/workflows/setup | |
# Remove the integration tests from the test suite, as they require a mainnet fork to run properly | |
- name: Remove integration tests | |
run: rm -rf test/integration | |
- name: Collect coverage | |
run: yarn test:coverage | |
- name: Produce the coverage report | |
uses: insightsengineering/coverage-action@v2 | |
with: | |
path: ./coverage/cobertura-coverage.xml | |
publish: true | |
diff: true | |
diff-branch: master | |
diff-storage: _core_coverage_reports | |
coverage-summary-title: "Hardhat Unit Tests Coverage Summary" | |
togglable-report: true |