Skip to content

Commit

Permalink
ci:dont use artifact to download test report
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyutkarsh committed Aug 28, 2021
1 parent bcec4cc commit bd0f23e
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,10 @@ jobs:
run: |
npm run test-ci
- name: upload jest test results as build artifact
uses: actions/upload-artifact@v2 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: ${{github.workspace}}/test/reports/jest-junit.xml

- uses: dorny/test-reporter@v1.5.0
with:
artifact: test-results # artifact name
name: jest tests # Name of the check run which will be created
path: "*.xml" # Path to test results (inside artifact .zip)
path: reports/*.xml # Path to test results (inside artifact .zip)
reporter: jest-junit # Format of test results

- name: 🛠 update metadata in package.json
Expand Down

0 comments on commit bd0f23e

Please sign in to comment.