forked from microsoft/app-store-vsts-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
50 lines (41 loc) · 1.14 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Node.js with gulp
# Build a Node.js project using the gulp task runner.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'macOS-10.13'
steps:
- task: Npm@0
displayName: 'npm install'
- task: Gulp@0
displayName: 'gulp build'
inputs:
targets: build
- task: Gulp@0
displayName: 'gulp testwithresults'
inputs:
targets: testwithresults
arguments: '--reporter=junit'
publishJUnitResults: true
testResultsFiles: '**/test-*.xml'
- task: Gulp@0
displayName: 'gulp packageprod'
inputs:
targets: packageprod
- task: Gulp@0
displayName: 'gulp packagetest'
inputs:
targets: packagetest
- task: CopyFiles@2
displayName: 'Copy Files to: $(build.artifactstagingdirectory)'
inputs:
SourceFolder: '$(build.sourcesdirectory)'
Contents: '*.vsix'
TargetFolder: '$(build.artifactstagingdirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: ExtensionVsixFiles'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: ExtensionVsixFiles