From 68d8d61e4c90f2853c8a1c7a045d06f28708a424 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 17157293..a8b7e502 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -84,6 +84,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