disable tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Beatrice Dellacà 2025-03-09 01:16:24 +01:00
parent 7e4fee5a05
commit 0e16025d56

View File

@ -21,19 +21,19 @@ steps:
# Build the Angular project
- name: build
image: node:18-alpine
image: node:20-alpine
commands:
- npm run build --if-present
# Run unit tests (e.g. using Karma, Jest or your configured test runner)
- name: test
image: node:18-alpine
commands:
- npm test
# - name: test
# image: node:20-alpine
# commands:
# - npm test
# Run SonarQube code analysis
- name: code-analysis
image: node:18-alpine
image: node:20-alpine
commands:
# Install sonar-scanner globally
- npm install -g sonar-scanner