Skip to content

Commit 15dbecc

Browse files
authored
Set up CI with Azure Pipelines (#1)
Set up CI with Azure Pipelines
2 parents 4690682 + 8d12b1b commit 15dbecc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

azure-pipelines.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)