fix(ci): disable node npm caching and remove invalid next webpack flag to prevent hangs
Some checks failed
CI / Lint, Test & Build (push) Successful in 1m42s
CI / Deploy production (on server) (push) Failing after 8s

This commit is contained in:
Antigravity
2026-05-21 20:20:10 +00:00
parent 87ec01fdd5
commit 0e61055bc0
2 changed files with 1 additions and 3 deletions

View File

@@ -38,8 +38,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: memento-note/package-lock.json
- name: Install dependencies
run: npm ci

View File

@@ -6,7 +6,7 @@
"dev": "NODE_OPTIONS='--max-old-space-size=4096' next dev --turbopack",
"dev:all": "concurrently \"npm run dev\" \"npm run socket\"",
"socket": "npx tsx socket-server.ts",
"build": "prisma generate && next build --webpack",
"build": "prisma generate && next build",
"start": "next start",
"db:generate": "prisma generate",
"db:migrate": "node scripts/safe-migrate.js",