diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..bf7812ecc --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +# Node.js +# Build a general Node.js application with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/vsts/pipelines/languages/javascript + +pool: + vmImage: 'Hosted MacOS Preview' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '9.x' +- script: | + npm install + npm run package-ci + displayName: 'Install dependencies and run packager' +