We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b118d7 commit a672eb8Copy full SHA for a672eb8
1 file changed
azure-pipelines.yml
@@ -4,18 +4,22 @@ trigger:
4
- master
5
- InDev
6
7
-pool:
8
- vmImage: 'ubuntu-latest'
9
-
10
strategy:
11
matrix:
12
- node_17_x:
13
- node_version: 17.x
+ linux:
+ imageName: 'ubuntu-latest'
+ mac:
+ imageName: 'macOS-latest'
+ windows:
14
+ imageName: 'windows-latest'
15
+
16
+pool:
17
+ vmImage: $(imageName)
18
19
steps:
20
- task: NodeTool@0
21
inputs:
- versionSpec: $(node_version)
22
+ versionSpec: 17.x
23
24
- script: |
25
npm install -g typescript jest typedoc
0 commit comments