From 12970d371d066b6c916398ca25d7bfc89a4cee18 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Wed, 12 Nov 2025 16:38:01 -0800 Subject: [PATCH] move to using /src - still css issue work --- .gitea/workflows/deploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index ce12eaff..24fa54a9 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -46,6 +46,14 @@ jobs: # Use a glob pattern to find the lock file, making the path more resilient. cache-dependency-path: '**/package-lock.json' + # THIS IS THE NEW, CRITICAL STEP + - name: Force Clean Install + run: | + echo "Forcing a clean slate by removing node_modules and package-lock.json" + rm -rf node_modules + rm -f package-lock.json + npm install + - name: Install Dependencies run: npm ci # 'ci' is faster and safer for CI/CD than 'install'.