We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4feac2f commit 13ad242Copy full SHA for 13ad242
1 file changed
.github/workflows/sonarqube.yml
@@ -67,9 +67,9 @@ jobs:
67
echo "===== Frontend tests + coverage ====="
68
cd src/ui/web
69
70
- # Clean install to ensure compatibility
71
- rm -rf node_modules package-lock.json
72
- npm install
+ # Clean install to ensure compatibility (keep package-lock.json for npm ci)
+ rm -rf node_modules
+ npm ci
73
74
# Run tests with coverage
75
npm test -- --coverage --watchAll=false
0 commit comments