From 79915d752ea612b5e064fd5d843d1d01bc7a999a Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Mon, 24 Jun 2019 10:39:07 +1000 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..5d04980 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,25 @@ +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run compile + displayName: 'npm install and build' + +- script: | + npm run package -- -o release.vsix + displayName: 'create vsix' + +- task: PublishPipelineArtifact@0 + displayName: 'Publish Pipeline Artifact' + inputs: + targetPath: release.vsix \ No newline at end of file