зеркало из https://github.com/Azure/ms-rest-js.git
40 строки
869 B
YAML
40 строки
869 B
YAML
jobs:
|
|
- job: Build
|
|
pool:
|
|
vmImage: 'Ubuntu 16.04'
|
|
steps:
|
|
- task: Npm@1
|
|
displayName: 'npm install'
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: install
|
|
- task: Npm@1
|
|
displayName: 'npm run build'
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: run build
|
|
- job: Check_Everything
|
|
pool:
|
|
vmImage: 'Ubuntu 16.04'
|
|
steps:
|
|
- task: Npm@1
|
|
displayName: 'npm install'
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: install
|
|
- task: Npm@1
|
|
displayName: 'npm run check:everything -- --azure-devops'
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: run check:everything -- --azure-devops
|
|
- template: azure-pipelines-test.yml
|
|
parameters:
|
|
nodeVersion: '10'
|
|
- template: azure-pipelines-test.yml
|
|
parameters:
|
|
nodeVersion: '12'
|