Skip to content

Commit 7f23a56

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent e2c5257 commit 7f23a56

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

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+
- develop
9+
10+
pool:
11+
vmImage: 'ubuntu-latest'
12+
13+
steps:
14+
- task: NodeTool@0
15+
inputs:
16+
versionSpec: '10.x'
17+
displayName: 'Install Node.js'
18+
19+
- script: |
20+
npm install
21+
displayName: 'npm install'

0 commit comments

Comments
 (0)