Set up CI with Azure Pipelines

This commit is contained in:
azure-pipelines[bot]
2018-09-11 05:53:14 +00:00
parent 11426bb0d0
commit c88bc62ff9
+18
View File
@@ -0,0 +1,18 @@
# 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: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- script: |
npm install
npm run build
displayName: 'npm install and build'