From 110268e1cef9c4ebdee67e715126b03e357cf4b7 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Sat, 1 Jun 2019 14:14:19 -0400 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..89b718e --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,28 @@ +pr: + - master + +pool: + vmImage: "ubuntu-latest" + +steps: +- task: NodeTool@0 + inputs: + versionSpec: "10.x" + displayName: "Install NodeJS" + +- script: | + npm install -g vsce + displayName: "Install VSCE" + +- script: | + npm install + displayName: "NPM Install" + +- script: | + vsce package --out $(Build.ArtifactStagingDirectory) + displayName: "VSCE Package" + +- task: PublishBuildArtifacts@1 + inputs: + pathtoPublish: $(Build.ArtifactStagingDirectory) + artifactName: drop