From 680a512c1c768351e260f3b6b07cecdc51176990 Mon Sep 17 00:00:00 2001 From: Sufiyan Date: Wed, 2 Oct 2024 13:43:11 +0530 Subject: [PATCH] Add CI step to upload HTML test report as artifact --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e054186..b4aeab6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,3 +55,9 @@ jobs: --repo-name ${{ github.event.repository.name }} \ --repo-id ${{ github.repository_id }} \ --repo-url ${{ github.event.repository.html_url }} + + - name: Upload HTML Test Report + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.os }}-${{ matrix.node-version }}-html-report + path: build/reports/specmatic/html \ No newline at end of file