File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
steps :
2
2
- task : NodeTool@0
3
3
inputs :
4
- versionSpec : ' 8.9 '
4
+ versionSpec : ' $(node_version) '
5
5
displayName : ' Install Node.js'
6
6
7
7
- script : npm install
Original file line number Diff line number Diff line change @@ -4,9 +4,21 @@ trigger:
4
4
5
5
jobs :
6
6
7
- # All tasks on Linux
7
+ # All tasks on Windows
8
+ - job : build_all_windows
9
+ displayName : Build all tasks using node 8 (Windows)
10
+ variables :
11
+ node_version : ' 8.x'
12
+ pool :
13
+ vmImage : vs2017-win2016
14
+ steps :
15
+ - template : azure-pipelines-template.yml
16
+
17
+ # All tasks on Windows
8
18
- job : build_all_windows
9
19
displayName : Build all tasks (Windows)
20
+ variables :
21
+ node_version : ' 11.x'
10
22
pool :
11
23
vmImage : vs2017-win2016
12
24
steps :
15
27
# All tasks on Linux
16
28
- job : build_all_linux
17
29
displayName : Build all tasks (Linux)
30
+ variables :
31
+ node_version : ' 11.x'
18
32
pool :
19
33
vmImage : ' Ubuntu 16.04'
20
34
steps :
23
37
# All tasks on macOS
24
38
- job : build_all_darwin
25
39
displayName : Build all tasks (macOS)
40
+ variables :
41
+ node_version : ' 11.x'
26
42
pool :
27
43
vmImage : macos-10.13
28
44
steps :
You can’t perform that action at this time.
0 commit comments