move to using /src - still css issue work
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 1m9s

This commit is contained in:
2025-11-12 16:38:01 -08:00
parent 827ceee0e1
commit 12970d371d

View File

@@ -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'.