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 b2fbdb1 commit 484bc79Copy full SHA for 484bc79
.github/workflows/pr-reporting.yml
@@ -11,9 +11,6 @@ jobs:
11
env:
12
GH_TOKEN: ${{ github.token }}
13
steps:
14
- - name: Dump GitHub context
15
- id: github_context_step
16
- run: echo '${{ toJSON(github) }}'
17
- name: Test Report
18
uses: dorny/test-reporter@v1
19
if: always() # run this step even if previous step failed
@@ -24,7 +21,7 @@ jobs:
24
21
reporter: jest-junit # Format of test results
25
22
- name: Download coverage artifacts with cli
26
23
run: |
27
- gh run download ${{ github.context.payload.workflow_run.id }} -n coverage
+ gh run download ${{ github.event.workflow_run.id }} -n coverage
28
ls
29
unzip coverage.zip
30
- name: Code Coverage Summary Report
0 commit comments