mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
27 lines
361 B
YAML
27 lines
361 B
YAML
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 |