Skip to content

Commit

Permalink
Add display names to azure steps
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeiger authored and rgbkrk committed Oct 26, 2018
1 parent ed71fe5 commit 0e8f234
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

pool:
vmImage: 'Ubuntu 16.04'
vmImage: "Ubuntu 16.04"

steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- task: NodeTool@0
inputs:
versionSpec: "10.x"
displayName: "Install Node.js"

- script: yarn
- script: yarn flow
- script: yarn build
- script: yarn
displayName: "Install dependencies"
- script: yarn build
displayName: "Build site"
- script: yarn flow
displayName: "Run flow"

0 comments on commit 0e8f234

Please sign in to comment.