multi-account-containers/azure-pipelines.yml
Johannes Schindelin b7fff695a2 Set up CI with Azure Pipelines
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2019-04-17 22:17:10 +02:00

33 lines
606 B
YAML

trigger:
- master
jobs:
- job: linux
displayName: Linux
pool: Hosted Ubuntu 1604
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm install
displayName: 'npm install'
- script: |
npm run build
displayName: 'npm run build'
- job: windows
displayName: Windows
pool: Hosted
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm install
displayName: 'npm install'
- script: |
npm run build
displayName: 'npm run build'