diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e828467b..5a5c7007 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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"