Compare commits

...

2 commits

Author SHA1 Message Date
87369ee90d azure-pipeline: Clean node process
All checks were successful
continuous-integration/drone/push Build is passing
2022-08-08 16:45:22 +02:00
Eric Nguyen
ed3dcf8112 Merged PR 12: Added Node Latest to tests 2022-08-08 14:38:01 +00:00

View file

@ -15,11 +15,27 @@ steps:
- task: NodeTool@0 - task: NodeTool@0
inputs: inputs:
versionSpec: '16.x' versionSpec: '16.x'
displayName: 'Install Node.js' displayName: 'Install Node.js 16.x LTS'
- script: | - script: |
node --version node --version
node ./test-server/node-http.js & node ./test-server/node-http.js &
npm install jobs
npm ci
npm run test:nowatch 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'