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: update GitHub Actions workflows to use server.cjs instead of server.js
🔧 Workflow Updates:
- Update .github/workflows/ci.yml build verification to use server.cjs
- Update .github/workflows/release.yml build verification to use server.cjs
🎯 Root Cause:
GitHub Actions workflows were still referencing the old server.js file
after we changed the build output to server.cjs for ES module compatibility.
✅ Verification:
- Local build test: ✅ SUCCESS
- Build verification command: ✅ require('./build/server.cjs') works
- CI pipeline should now pass build verification step
This resolves the 'Cannot find module ./build/server.js' error
in GitHub Actions workflows.
0 commit comments