Skip to content

Commit

Permalink
ci: add more Node versions to Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiohgz committed Aug 12, 2019
1 parent 369da51 commit 947b46a
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,30 @@ strategy:
node12_linux:
imageName: 'ubuntu-latest'
nodeVersion: 12.x
node_12_windows:
node12_windows:
imageName: 'windows-2019'
nodeVersion: 12.x
node_12_macos:
node12_macos:
imageName: 'macOS-10.14'
nodeVersion: 12.x
maxParallel: 3
node10_linux:
imageName: 'ubuntu-latest'
nodeVersion: 10.x
node10_windows:
imageName: 'windows-2019'
nodeVersion: 10.x
node10_macos:
imageName: 'macOS-10.14'
nodeVersion: 10.x
node8_linux:
imageName: 'ubuntu-latest'
nodeVersion: 8.x
node8_windows:
imageName: 'windows-2019'
nodeVersion: '8.16'
node8_macos:
imageName: 'macOS-10.14'
nodeVersion: 8.x

pool:
vmImage: $(imageName)
Expand All @@ -18,7 +35,7 @@ steps:
- task: NodeTool@0
inputs:
versionSpec: $(nodeVersion)
displayName: "Install Node.js"
displayName: 'Install Node.js'

- script: yarn install --frozen-lockfile
displayName: 'Install dependencies'
Expand Down

0 comments on commit 947b46a

Please sign in to comment.