Commit 544d7a6
committed
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.1 parent 36260dc commit 544d7a6
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
78 | | - | |
| 78 | + | |
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
| |||
0 commit comments