diff options
author | crupest <crupest@outlook.com> | 2019-02-22 00:25:42 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-22 00:25:42 +0800 |
commit | 57f88746769432ed2d529a4f050783d84f9fb2bc (patch) | |
tree | 0f90f9a078e1db147a65b96a3c28a8ea2fe15c9e | |
parent | 837bee4e1b5e3b7692c31b74b93c0fbb9bf583a5 (diff) | |
download | timeline-57f88746769432ed2d529a4f050783d84f9fb2bc.tar.gz timeline-57f88746769432ed2d529a4f050783d84f9fb2bc.tar.bz2 timeline-57f88746769432ed2d529a4f050783d84f9fb2bc.zip |
Add display name for script in ci.
-rw-r--r-- | azure-pipelines.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2e139efb..4bbf12af 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,8 +12,10 @@ variables: steps: - script: dotnet build --configuration $(buildConfiguration) --configfile nuget.config + displayName: Dotnet Build - script: dotnet test Timeline.Tests --configuration $(buildConfiguration) --logger trx + displayName: Dotnet Test - task: PublishTestResults@2 condition: succeededOrFailed() @@ -23,9 +25,11 @@ steps: - script: yarn install workingDirectory: Timeline/ClientApp + displayName: Yarn Install - script: yarn run test --no-watch --browsers=ChromeHeadless --reporters junit workingDirectory: Timeline/ClientApp + displayName: Angular Test - task: PublishTestResults@2 condition: succeededOrFailed() @@ -34,6 +38,7 @@ steps: testResultsFiles: '**/TESTS-*.xml' - script: dotnet publish Timeline/Timeline.csproj --configuration $(buildConfiguration) --output ./publish/ + displayName: Dotnet Publish - task: PublishPipelineArtifact@0 inputs: |