From ff81ce078ba997640bab069595e5ad7dccbd2623 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 2 Jan 2019 09:38:40 -0800 Subject: [PATCH] Add a release pipelines job --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a26bd3d8..19c8044b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -66,3 +66,22 @@ jobs: - script: | yarn lint displayName: 'Lint' + +- job: Release + dependsOn: + - Linux + - macOS + - Windows + pool: + vmImage: 'xcode9-macos10.13' + steps: + - task: NodeTool@0 + inputs: + versionSpec: '8.x' + displayName: 'Install Node.js' + - script: | + yarn + displayName: 'Install dependencies and build' + - script: | + echo 'success' + displayName: 'Test'