From dc6c3c801c5850fe366c88d79852ccfbd1abb6cd Mon Sep 17 00:00:00 2001 From: Darren Kelly Date: Tue, 26 Dec 2023 00:38:08 +0000 Subject: [PATCH] debug actions --- .github/workflows/integration-tests.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index 0bf60d31a..79c4311d4 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -30,6 +30,7 @@ jobs: - name: Publish to Action uses: dorny/test-reporter@v1 + id: test-reporter if: success() || failure() # run this step even if previous step failed with: name: Integration Tests @@ -40,3 +41,9 @@ jobs: reporter: 'mocha-json' path: | integration_tests/results.json + + + - name: Echo 'test-reporter' outputs + run: | + echo ${{join(steps.test-reporter.outputs.*, '\n')}} +