Skip to content

Commit

Permalink
Simplify server dependency installation and startup command in deploy…
Browse files Browse the repository at this point in the history
…ment workflow
  • Loading branch information
ix-benjaminm committed Oct 7, 2024
1 parent f58fb6f commit 948ce36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
with:
node-version: 22

- name: Install server dependencies
run: cd server && npm install

- name: Install client dependencies
run: cd client && npm install

Expand All @@ -43,5 +40,8 @@ jobs:
local-dir: ./upload/
server-dir: /

- name: Install server dependencies
run: npm install

- name: Start server
run: cd server && nohup npm run start &
run: nohup npm run start &

0 comments on commit 948ce36

Please sign in to comment.