From 89a8feb278692728d93a87eb5f70df328f9fd374 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 18 Jul 2024 01:41:12 +0200 Subject: [PATCH] Clear node_modules in drone --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index a664428e..37e18e05 100644 --- a/.drone.yml +++ b/.drone.yml @@ -34,7 +34,7 @@ steps: - name: node image: node:20.15.0-slim commands: - - npm ci && cd packages/adrema-form && npm ci && npm run build && cd ../../ && npm run img && npm run prod && rm -R node_modules + - npm ci && cd packages/adrema-form && npm ci && npm run build && rm -R node_modules && cd ../../ && npm run img && npm run prod && rm -R node_modules - name: tests image: zoomyboy/adrema-base:latest