From 70296581183e42fe1e43d09bbb3e7f400a7ee4c0 Mon Sep 17 00:00:00 2001 From: Andy Sterland Date: Sun, 28 Oct 2018 21:48:45 -0700 Subject: [PATCH] Adding azure pipeline placeholder --- azure-pipelines.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..bdbddac --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,18 @@ +pool: + vmImage: 'Ubuntu 16.04' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '8.x' + +- script: | + npm install + npm build + +- task: ArchiveFiles@2 + inputs: + rootFolderOrFile: '$(System.DefaultWorkingDirectory)' + includeRootFolder: false + +- task: PublishBuildArtifacts@1 \ No newline at end of file