Skip to content

Commit 94416f7

Browse files
author
Dev Agent Amelia
committed
fix: correct dist entrypoint in CI check (server.js not index.js)
1 parent 0f9f0c3 commit 94416f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
- name: Validate server.json
2121
run: node -e "const s = require('./server.json'); console.log('server.json OK:', s.name, s.version)"
2222
- name: Check dist entrypoint
23-
run: node -e "require('./dist/index.js'); console.log('dist/index.js loads OK')"
23+
run: node -e "require('./dist/server.js'); console.log('dist/server.js loads OK')"
2424

0 commit comments

Comments
 (0)