Skip to content

Commit

Permalink
🏙
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Jul 6, 2023
1 parent 409d0ab commit b92a114
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ jobs:
- name: Clear dist dir
run: pnpm run clean.dist

- name: Build Node Server
run: pnpm run build.node-dev

- name: Test Node Server MPA
run: pnpm run test.node.mpa

- name: Test Node Server SPA
run: pnpm run test.node.spa

- name: Clear dist dir
run: pnpm run clean.dist

- name: Build Static Server
run: pnpm run build.static

Expand Down
3 changes: 3 additions & 0 deletions custom-src/entry.node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ server.on("request", (req, res) => {
});
});

/* eslint-disable */
console.log(`Server starter: http://localhost:${PORT}/app/`);

server.listen(PORT);

0 comments on commit b92a114

Please sign in to comment.