We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c23b0e8 commit 3e4beecCopy full SHA for 3e4beec
.github/workflows/azure-webapp-deploy.yml
@@ -19,11 +19,20 @@ jobs:
19
with:
20
node-version: "22"
21
22
- # Install client dependencies and build React app
23
- - name: Build React client
+ # Install client and server dependencies and build React app
+ - name: Install client dependencies
24
run: |
25
cd client
26
npm install
27
+
28
+ - name: Install server dependencies
29
+ run: |
30
+ cd server
31
+ npm install
32
33
+ - name: Build React client
34
35
+ cd client
36
npm run build
37
38
# Copy React dist into server folder
0 commit comments