зеркало из https://github.com/Azure/sway.git
36 строки
564 B
YAML
36 строки
564 B
YAML
pool:
|
|
vmImage: 'Ubuntu 16.04'
|
|
|
|
trigger:
|
|
- validation
|
|
|
|
steps:
|
|
|
|
- task: Npm@1
|
|
displayName: 'npm install'
|
|
inputs:
|
|
verbose: false
|
|
|
|
- task: Gulp@0
|
|
displayName: 'gulp '
|
|
inputs:
|
|
publishJUnitResults: true
|
|
enableCodeCoverage: true
|
|
|
|
- task: Npm@1
|
|
displayName: 'npm pack'
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: pack
|
|
|
|
- task: CopyFiles@2
|
|
displayName: 'Copy Files to: drop'
|
|
inputs:
|
|
Contents: '*.tgz'
|
|
TargetFolder: drop
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
inputs:
|
|
pathtoPublish: $(Build.SourcesDirectory)/drop
|