Skip to content

Commit 40c2481

Browse files
author
Danny McCormick
authored
add azure-pipelines.yml
1 parent 712b585 commit 40c2481

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
steps:
2+
- task: NodeTool@0
3+
inputs:
4+
versionSpec: "8.x"
5+
displayName: Install node 8
6+
7+
# install dependencies
8+
- script: npm install
9+
displayName: npm install
10+
11+
# build
12+
- script: npm run build
13+
displayName: npm run build
14+
15+
- script: npm run units
16+
displayName: Run unit tests

0 commit comments

Comments
 (0)