Skip to content

Commit

Permalink
test(ci): Run with active node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Mar 24, 2020
1 parent 7081f92 commit d82dbfb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ pr:
pool:
vmImage: "ubuntu-latest"

strategy:
matrix:
# active node versions
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
node_13_x:
node_version: 13.x

steps:
- task: NodeTool@0
inputs:
versionSpec: "12.11.x"
versionSpec: $(node_version)
displayName: "Install Node.js"

- script: |
Expand Down

0 comments on commit d82dbfb

Please sign in to comment.