From b5e420de91259a3f0009afc0a4193801b3294de8 Mon Sep 17 00:00:00 2001 From: Florin Barbu Date: Mon, 20 Nov 2023 08:31:44 +0200 Subject: [PATCH] add test summary to github actions run (#1724) --- .github/workflows/test-node.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index 7daef394f8..6ac8e6fdf2 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -97,3 +97,11 @@ jobs: with: name: ${{ inputs.test_type }}-logs path: packages/tests/log/ + + - name: Create test summary + if: always() && env.ALLURE_REPORTS == 'true' + run: | + echo "## Run Information" >> $GITHUB_STEP_SUMMARY + echo "- **NWAKU**: ${{ env.WAKUNODE_IMAGE }}" >> $GITHUB_STEP_SUMMARY + echo "## Test Results" >> $GITHUB_STEP_SUMMARY + echo "Allure report will be available at: https://waku-org.github.io/allure-jswaku/${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY