Skip to content

Commit

Permalink
fix(actions): unit test artifact renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
prb28 committed Dec 23, 2024
1 parent 429cbba commit a1df01c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,21 @@ jobs:
with:
name: Extension
path: ./*.vsix

publish-test-results:
name: "Publish Unit Tests Results"
needs: build
runs-on: ubuntu-latest
# the build-and-test job might be skipped, we don't need to run this job then
if: success() || failure()

steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: artifacts/**/*.xml

0 comments on commit a1df01c

Please sign in to comment.