From 7921e6c4536a535e42059d1476d6e7276e234cd1 Mon Sep 17 00:00:00 2001 From: Darren Kelly Date: Tue, 26 Dec 2023 00:15:08 +0000 Subject: [PATCH] update actions --- .github/workflows/integration-tests.yaml | 34 ++++++++++++++++-------- 1 file changed, 23 insertions(+), 11 deletions(-) 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 +