Skip to content

Commit

Permalink
ci: add tests report to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
omermorad committed Dec 14, 2021
1 parent f4a65bd commit 13a7adc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ jobs:

- name: Test
run: yarn test:cov
env:
JEST_JUNIT_OUTPUT_NAME: 'junit.xml'

- name: Tests Report (Sync)
uses: dorny/test-reporter@v1
if: failure()
with:
reporter: 'jest-junit'
name: 'Tests Report'
path: 'junit.xml'
list-tests: 'failed'
fail-on-error: false

- name: Build
run: yarn build
Expand Down

0 comments on commit 13a7adc

Please sign in to comment.