Set up CI with Azure Pipelines #2238

Merged
azure-pipelines[bot] merged 1 commit from release into master 2019-01-29 07:46:08 +01:00

21
azure-pipelines.yml Normal file
View file

@ -0,0 +1,21 @@
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- release
pool:
vmImage: 'vs2017-win2016'
steps:
- task: NodeTool@0
inputs:
versionSpec: '9.x'
displayName: 'Install Node.js'
- script: |
yarn install
yarn build --publish onTag
displayName: 'yarn install and build'