Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: Set up CI with Azure Pipelines
  • Loading branch information
jimthedev committed Sep 23, 2018
1 parent d565215 commit 4693079
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,18 @@
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

pool:
vmImage: 'Ubuntu 16.04'

steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'

- script: |
npm install
npm run build
displayName: 'npm install and build'

0 comments on commit 4693079

Please sign in to comment.