Update master with latest changes #22

Merged
Siklos merged 37 commits from dev into master 2022-08-09 12:18:01 -04:00
Showing only changes of commit ed3dcf8112 - Show all commits

View file

@ -15,11 +15,23 @@ 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
npm ci
npm run test:nowatch
displayName: 'npm install and test'
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 &
npm ci
npm run test:nowatch
displayName: 'Test on Node.js 18.x Latest'