css issues
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m32s

This commit is contained in:
2025-11-12 13:24:03 -08:00
parent db4b679254
commit e0d292ec97
4 changed files with 334 additions and 18 deletions

View File

@@ -48,6 +48,18 @@ jobs:
- name: Install Dependencies
run: npm ci # 'ci' is faster and safer for CI/CD than 'install'.
# This new step provides critical debugging information about the build environment.
- name: Verify Build Environment
run: |
echo "--- Verifying installed packages and configuration ---"
echo "Listing contents of node_modules/tailwindcss:"
ls -l node_modules/tailwindcss
echo "Listing contents of node_modules/@tailwindcss/:"
ls -l node_modules/@tailwindcss
echo "Contents of postcss.config.cjs:"
cat postcss.config.cjs
echo "----------------------------------------------------"
- name: Lint TypeScript Code
run: npm run lint # Run the linter to check for code quality issues.