--- a/.github/workflows/node_build_test.yml +++ b/.github/workflows/node_build_test.yml @@ -100,7 +100,6 @@ - name: Test Report uses: phoenix-actions/test-reporting@v8 - id: test-report # Set ID reference for step if: success() || failure() # run this step even if previous step failed with: name: Tests ${{ matrix.network }} # Name of the check run which will be created @@ -108,6 +107,10 @@ reporter: mochawesome-json fail-on-error: 'false' + - name: Read output variables + run: | + echo "url is ${{ steps.test-report.outputs.runHtmlUrl }}" + - name: Stop running containers if: always() # run this step always run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down