Open
Description
If i run below script on windows image, test does not run,
- script: |
npm install
npm run build
npm test
displayName: 'npm install and build and test'
task finishes :
added 133 packages, and audited 271 packages in 14s
16 vulnerabilities (7 moderate, 6 high, 3 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Run npm audit
for details.
Finishing: npm install and build and test
If i split the "npm test"
- script: |
npm install
npm run build
displayName: 'npm install and build and test'
- script: |
npm test
displayName: 'npm test'
encounter error" cannot find module.
how do I fix this? I want to run on windows imge.
Metadata
Assignees
Labels
No labels
Activity