We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bd51d commit aa71d4dCopy full SHA for aa71d4d
.github/workflows/pr-reporting.yml
@@ -17,11 +17,11 @@ jobs:
17
name: JEST Tests # Name of the check run which will be created
18
path: junit.xml # Path to test results
19
reporter: jest-junit # Format of test results
20
- - name: Download coverage artifact
21
- uses: actions/download-artifact@v3
22
- with:
23
- name: coverage
24
- path: coverage
+ - name: Download coverage artifacts with cli
+ run: |
+ gh run download {{ github.context.payload.workflow_run.id }} -n coverage
+ ls
+ unzip coverage.zip
25
- name: Code Coverage Summary Report
26
uses: irongut/[email protected]
27
with:
0 commit comments