sync: core repo master #10
Workflow file for this run
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: [pull_request] | |
jobs: | |
coverage: | |
name: Hardhat | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
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 | |
threshold: 95 | |
# TODO: uncomment the following lines when the coverage in master branch is ready | |
# diff: true | |
# diff-branch: master | |
diff-storage: _core_coverage_reports | |
coverage-summary-title: "Hardhat Unit Tests Coverage Summary" | |
togglable-report: true |