Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Dec 26, 2023
1 parent d6fdffe commit 7921e6c
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,27 @@ jobs:
yarn install
yarn test
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
only-summary: 'false'
list-suites: 'all'
list-tests: 'all'
fail-on-error: 'true'
files: |
integration_tests/results.json
# - name: Publish Test Results
# uses: EnricoMi/publish-unit-test-result-action@v2
# if: always()
# with:
# only-summary: 'false'
# list-suites: 'all'
# list-tests: 'all'
# fail-on-error: 'true'
# files: |
# integration_tests/results.json

- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Integration Tests
only-summary: 'false'
list-suites: 'all'
list-tests: 'failed'
fail-on-error: 'true'
reporter: 'mocha-json'
path: |
integration_tests/results.json

0 comments on commit 7921e6c

Please sign in to comment.