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 | 504d770e51a07ca7765de725979412b6dacdcf15 (patch) | |
tree | 8f22c966d15d928a5587385f38b5284f0691b2de | |
parent | 52b5bff6272e082bbb130f75c70f1563e15ba195 (diff) | |
download | timeline-504d770e51a07ca7765de725979412b6dacdcf15.tar.gz timeline-504d770e51a07ca7765de725979412b6dacdcf15.tar.bz2 timeline-504d770e51a07ca7765de725979412b6dacdcf15.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: |