-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Coverage Reporting Tool (#4061)
* Sets thresholds for new Coverate Reporting Tool * Change Job Name * Version bump to v3.2 * Going back to cobertura * Testing CodeCoverageSummary * Update coverage
- Loading branch information
1 parent
c4eb9c1
commit 5674d3e
Showing
2 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,12 +47,25 @@ jobs: | |
pwd | ||
ls -al | grep 'coverage' | ||
- name: Coverage Action | ||
- name: Code Coverage Summary Report | ||
uses: irongut/[email protected] | ||
with: | ||
filename: ./coverage.xml | ||
badge: true | ||
fail_below_min: true | ||
format: markdown | ||
hide_branch_rate: false | ||
hide_complexity: true | ||
indicators: true | ||
output: both | ||
thresholds: '85 90' | ||
|
||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
if: github.event_name == 'pull_request' | ||
uses: orgoro/[email protected] | ||
with: | ||
coverageFile: ./coverage.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
recreate: true | ||
path: code-coverage-results.md | ||
|
||
a11y-testing: | ||
runs-on: ubuntu-latest | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,12 +49,25 @@ jobs: | |
pwd | ||
ls -al | grep 'coverage' | ||
- name: Coverage Action | ||
- name: Code Coverage Summary Report | ||
uses: irongut/[email protected] | ||
with: | ||
filename: ./coverage.xml | ||
badge: true | ||
fail_below_min: false | ||
format: markdown | ||
hide_branch_rate: false | ||
hide_complexity: true | ||
indicators: true | ||
output: both | ||
thresholds: '85' | ||
|
||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
if: github.event_name == 'pull_request' | ||
uses: orgoro/[email protected] | ||
with: | ||
coverageFile: ./coverage.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
recreate: true | ||
path: code-coverage-results.md | ||
|
||
a11y-testing: | ||
runs-on: ubuntu-latest | ||
|