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