Set up new CI with Azure Pipelines (#796)

Add a new PR validation pipeline.
This commit is contained in:
Xinxing Liu 2020-11-30 15:16:42 -08:00 коммит произвёл GitHub
Родитель f63bce4a77
Коммит 6133074140
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 32 добавлений и 0 удалений

32
azure-pipelines-pr.yml Normal file
Просмотреть файл

@ -0,0 +1,32 @@
# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'
- script: |
yarn install
yarn tslint
if [ $? -ne 0 ]; then
exit 1
fi
yarn compile
if [ $? -ne 0 ]; then
exit 1
fi
yarn build
if [ $? -ne 0 ]; then
exit 1
fi
displayName: 'yarn install and build'