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.
2 parents 4690682 + 8d12b1b commit 15dbeccCopy full SHA for 15dbecc
azure-pipelines.yml
@@ -0,0 +1,25 @@
1
+pool:
2
+ vmImage: 'ubuntu-16.04'
3
+
4
+strategy:
5
+ matrix:
6
+ node_6_x:
7
+ node_version: 6.x
8
+ node_8_x:
9
+ node_version: 8.x
10
+ node_10_x:
11
+ node_version: 10.x
12
+ node_11_x:
13
+ node_version: 12.x
14
15
+steps:
16
+ - task: NodeTool@0
17
+ inputs:
18
+ versionSpec: $(node_version)
19
+ displayName: Install Node.js
20
21
+ - bash: npm install
22
+ displayName: Install dependencies
23
24
+ - bash: npm test
25
+ displayName: Test
0 commit comments