Some checks failed
Deploy to Frontend Servers / deploy (push) Failing after 2s
The previous run still hit ENOSPC, this time during `npm ci` while extracting node_modules. The earlier cleanup left the just-failed act workspace on disk (mtime < 10min threshold), and its half-extracted node_modules took the runner past the limit before `npm ci` finished. - Drop the mtime threshold for act workspaces; instead detect the currently-running job's directory and rm -rf every sibling. The current job is preserved by path comparison so we never delete files the running step needs. - Blow away ~/.npm/_cacache, ~/.npm/_logs, ~/.cache/setup-node entirely. `npm ci` re-populates what it needs and the cache is the easiest GB to reclaim on a tight runner. - Tighten actions-runner workspace retention from 24h to 30min. - Drop the docker prune --filter; use `docker system prune -af --volumes` to reclaim builder cache and volumes too. - Hard-fail with a clear error if <3.5GB free after cleanup, instead of letting `npm ci` half-write an unusable node_modules and failing obscurely. Codebase needs ~3GB for hoisted deps.