From 9e492477c46c7b0aac894b0847ff7dc3dd057e80 Mon Sep 17 00:00:00 2001 From: Jason Naylor Date: Wed, 27 Nov 2024 14:59:13 -0800 Subject: [PATCH] Add a test result publishing step --- .github/workflows/ci-cd.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index e1bd6490..2bdedf58 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -96,6 +96,11 @@ jobs: shell: cmd run: msbuild build\FLExBridge.proj /t:Test /p:Configuration=Release + - name: Publish Test Results + uses: EnricoMi/publish-unit-test-result-action/windows@v2 + with: + files: '**/TestResults.xml' + - name: Create NuGet packages shell: cmd run: msbuild build\FLExBridge.proj /t:Pack /p:Configuration=Release