Skip to content

Commit d4fbab9

Browse files
authored
Set up CI with Azure Pipelines (#10)
* Set up CI with Azure Pipelines * Update azure-pipelines.yml
1 parent 03e5591 commit d4fbab9

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Node.js
2+
# Build a general Node.js project with npm.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'Ubuntu-16.04'
11+
12+
steps:
13+
- task: NodeTool@0
14+
inputs:
15+
versionSpec: '8.x'
16+
displayName: 'Install Node.js'
17+
18+
- script: |
19+
npm install
20+
npm run test
21+
displayName: 'npm install and build'

0 commit comments

Comments
 (0)