Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Merge d71af4b into d21d3f3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Nov 22, 2019
2 parents d21d3f3 + d71af4b commit 3f9a165
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -4,6 +4,5 @@ node_js:
- "10"
script:
- npm install
- npm run build
- npm test
- npm run travis-coverage
1 change: 0 additions & 1 deletion appveyor.yml
Expand Up @@ -19,7 +19,6 @@ test_script:
- node --version
- npm --version
# run tests
- npm run build
- npm test

# Don't actually build.
Expand Down
33 changes: 33 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,33 @@
# 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

trigger:
- master

strategy:
matrix:
linux:
imageName: 'ubuntu-16.04'
mac:
imageName: 'macos-10.13'
windows:
imageName: 'vs2017-win2016'

pool:
vmImage: $(imageName)

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

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

- script: |
npm test
displayName: 'unit tests'

0 comments on commit 3f9a165

Please sign in to comment.