Compare commits
2 commits
60247d6f45
...
87369ee90d
Author | SHA1 | Date | |
---|---|---|---|
87369ee90d | |||
|
ed3dcf8112 |
1 changed files with 19 additions and 3 deletions
|
@ -15,11 +15,27 @@ steps:
|
|||
- task: NodeTool@0
|
||||
inputs:
|
||||
versionSpec: '16.x'
|
||||
displayName: 'Install Node.js'
|
||||
displayName: 'Install Node.js 16.x LTS'
|
||||
|
||||
- script: |
|
||||
node --version
|
||||
node ./test-server/node-http.js &
|
||||
npm install
|
||||
jobs
|
||||
npm ci
|
||||
npm run test:nowatch
|
||||
displayName: 'npm install and test'
|
||||
killall node
|
||||
displayName: 'Test on Node.js 16.x LTS'
|
||||
|
||||
- task: NodeTool@0
|
||||
inputs:
|
||||
versionSpec: '>=18.7.0'
|
||||
displayName: 'Install Node.js Latest'
|
||||
|
||||
- script: |
|
||||
node --version
|
||||
node ./test-server/node-http.js &
|
||||
jobs
|
||||
npm ci
|
||||
npm run test:nowatch
|
||||
killall node
|
||||
displayName: 'Test on Node.js 18.x Latest'
|
Loading…
Add table
Add a link
Reference in a new issue