diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index 6d6524265..f7d701c91 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -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 +