Skip to content

Commit

Permalink
chore: Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
azure-pipelines[bot] committed Sep 12, 2018
1 parent b97d9a3 commit f8b0c8e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Node.js
# Build a general Node.js application with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/javascript

pool:
vmImage: 'Ubuntu 16.04'

strategy:
matrix:
node_10_x:
node_version: 10.x
node_8_x:
node_version: 8.x
node_6_x:
node_version: 6.x

steps:
- task: NodeTool@0
inputs:
version: $(node_version)
displayName: 'Install Node.js'

- script: |
npm ci
npm run ci
displayName: 'npm install and test'

0 comments on commit f8b0c8e

Please sign in to comment.