Skip to content

Commit

Permalink
Added Azure Pipelines config
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilemuller committed Jul 8, 2019
1 parent a03ee57 commit 6aa538b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
!/.npmrc
!/.travis.yml
!/.vscode
!/azure-pipelines.yml
!/src
!/test
!/jasmine.typescript.js
Expand Down
22 changes: 22 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
strategy:
maxParallel: 2
matrix:
lts:
node_version: 10.x
latest:
node_version: 12.x

pool:
vmImage: 'ubuntu-16.04'

steps:
- task: NodeTool@0
displayName: Use Node
inputs:
versionSpec: $(node_version)

- script: npm install
displayName: Install Dependencies

- script: npm test
displayName: Run Tests

0 comments on commit 6aa538b

Please sign in to comment.