forked from tokiedokie/reveal-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
39 lines (35 loc) · 890 Bytes
/
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
# Node.js
# Build a general Node.js application with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/javascript
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: azure-pipelines-steps.yml
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- template: azure-pipelines-steps.yml
- job: macOS
pool:
vmImage: 'xcode9-macos10.13'
steps:
- template: azure-pipelines-steps.yml
# - job: Release
# pool:
# vmImage: 'ubuntu-16.04'
# dependsOn:
# - Linux
# - Windows
# - macOS
# condition: and(succeeded(), eq(variables['build.sourceBranch'], 'refs/heads/master'))
# steps:
# NPM INSTALL
# NPM VERSION
# RELEASE NOTE ?
# PREPUBLISH
# vsce package
# vsce publish -p <token>