diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9a751fc..40364ea 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,27 +15,11 @@ steps: - task: NodeTool@0 inputs: versionSpec: '16.x' - displayName: 'Install Node.js 16.x LTS' + displayName: 'Install Node.js' - script: | node --version node ./test-server/node-http.js & - jobs - npm ci + npm install npm run test:nowatch - 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' \ No newline at end of file + displayName: 'npm install and test'