Skip to content

Commit 3e4beec

Browse files
committed
build: update deployment yaml
1 parent c23b0e8 commit 3e4beec

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/azure-webapp-deploy.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,20 @@ jobs:
1919
with:
2020
node-version: "22"
2121

22-
# Install client dependencies and build React app
23-
- name: Build React client
22+
# Install client and server dependencies and build React app
23+
- name: Install client dependencies
2424
run: |
2525
cd client
2626
npm install
27+
28+
- name: Install server dependencies
29+
run: |
30+
cd server
31+
npm install
32+
33+
- name: Build React client
34+
run: |
35+
cd client
2736
npm run build
2837
2938
# Copy React dist into server folder

0 commit comments

Comments
 (0)