We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa534ae commit d0bbdeaCopy full SHA for d0bbdea
azure-pipelines.yml
@@ -5,23 +5,32 @@ strategy:
5
matrix:
6
'Node 6':
7
versionSpec: '6.x'
8
+ npmVersion: '5'
9
'Node 8':
10
versionSpec: '8.x'
11
+ npmVersion: '6'
12
'Node 10':
13
versionSpec: '10.x'
14
15
'Node 12':
16
versionSpec: '12.x'
17
18
'Node 14':
19
versionSpec: '14.x'
20
21
'Node 16':
22
versionSpec: '16.x'
23
+ npmVersion: '8'
24
25
steps:
26
- task: NodeTool@0
27
inputs:
28
versionSpec: $(versionSpec)
29
displayName: Install node
30
31
+- script: npm install -g npm@$(npmVersion)
32
+ displayName: Upgrade npm
33
+
34
# install dependencies
35
- script: npm install
36
displayName: npm install
0 commit comments