Skip to content

Commit

Permalink
Test against node 10 and node 12.
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbsgilbs committed Jul 31, 2019
1 parent f98fd14 commit fd03621
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/templates/docker-jobs.yml
Expand Up @@ -9,4 +9,4 @@ jobs:
${{ pair.key }}: ${{ pair.value }}
pool:
vmImage: "${{ parameters.vmImage }}"
container: "${{ parameters.container }}"
container: "$[ coalesce(variables.container, '${{ parameters.container }}') ]"
6 changes: 6 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -37,6 +37,12 @@ stages:
jobs:
- job: test
displayName: Run test
strategy:
matrix:
node10:
container: 'node:10'
node12:
container: 'node:12'
steps:
- script: yarn install && yarn run test --coverage
- script: yarn add --dev codecov && yarn run codecov
Expand Down

0 comments on commit fd03621

Please sign in to comment.