Merge pull request #2238 from lbryio/release

Set up CI with Azure Pipelines
This commit is contained in:
Shawn K 2019-01-29 00:46:08 -06:00 committed by GitHub
commit 324b0134a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'