Skip to content

Commit 4693079

Browse files
committed
chore: Set up CI with Azure Pipelines
1 parent d565215 commit 4693079

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

azure-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
pool:
7+
vmImage: 'Ubuntu 16.04'
8+
9+
steps:
10+
- task: NodeTool@0
11+
inputs:
12+
versionSpec: '8.x'
13+
displayName: 'Install Node.js'
14+
15+
- script: |
16+
npm install
17+
npm run build
18+
displayName: 'npm install and build'

0 commit comments

Comments
 (0)