From b7fff695a20b33fd15a15f0d218fc1dd9f9c1705 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 17 Apr 2019 22:05:56 +0200 Subject: [PATCH] Set up CI with Azure Pipelines Signed-off-by: Johannes Schindelin --- azure-pipelines.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..4d3fc0d --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,33 @@ +trigger: +- master + +jobs: +- job: linux + displayName: Linux + pool: Hosted Ubuntu 1604 + steps: + - task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + - script: | + npm install + displayName: 'npm install' + - script: | + npm run build + displayName: 'npm run build' + +- job: windows + displayName: Windows + pool: Hosted + steps: + - task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + - script: | + npm install + displayName: 'npm install' + - script: | + npm run build + displayName: 'npm run build'