You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): add deno install step to all test jobs + regenerate lock file
Root cause: CI test.yml had no 'deno install --node-modules-dir' step.
It relied on cache hits for node_modules. When the lock file hash changed
(bumped from ^0.14.6 to ^0.14.8), cache missed and node_modules was empty,
causing 'Could not find a matching package for npm:vite@8.0.10' errors.
Fix:
- Add 'deno install --node-modules-dir' step after cache restore in all
12 test jobs (typecheck, 8 test-*, build-www, test-e2e)
- Regenerate deno.lock via 'deno install' to ensure consistency
(previous lock was partially modified by sed, now properly resolved)
0 commit comments