From 0e16025d562cab332540632be6689c3697f596ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Sun, 9 Mar 2025 01:16:24 +0100 Subject: [PATCH] disable tests --- .drone.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3aa2863..0a2bb0f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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