blob: 5eb9048cbb622fe9683959b2f47f66ccaf207b00 [file]
trigger:
- '*'
pr:
- '*'
strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
mac:
imageName: 'macos-latest'
windows:
imageName: 'windows-latest'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- bash: |
yarn && yarn test
displayName: Run Tests