Skip to content

Commit

Permalink
Attempt to run strategy in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Sep 23, 2018
1 parent 1066642 commit bee9f08
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion azure-pipelines-template.yml
Expand Up @@ -10,12 +10,16 @@ jobs:
node_version: 8.x
node_10_x:
node_version: 10.x
maxParallel: 3
steps:
- task: NodeTool@0
inputs:
version: $(node_version)
versionSpec: $(node_version)
displayName: 'Install Node.js'

- script: yarn
displayName: 'Install dependencies'
- script: yarn test-ci
displayName: 'Run tests'
- script: yarn lint
displayName: 'Lint'

0 comments on commit bee9f08

Please sign in to comment.