prettier/.azure-pipelines/steps/publish-test-results.yml

8 lines
260 B
YAML

steps:
- task: PublishTestResults@2
inputs:
testResultsFormat: JUnit
testResultsFiles: $(System.DefaultWorkingDirectory)/junit.xml
displayName: "Publish test results"
condition: and(variables.ENABLE_TEST_RESULTS, succeededOrFailed())