We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39dadbc commit aaf0a76Copy full SHA for aaf0a76
.github/workflows/ci.yml
@@ -19,17 +19,10 @@ jobs:
19
node-version: 16 # Or your desired Node.js version
20
21
- name: Install backend dependencies
22
- run: npm install --prefix backend
+ run: cd backend && npm install && cd ..
23
24
- name: Install frontend dependencies
25
- run: npm install --prefix frontend
26
-
27
28
- - name: Build backend
29
- run: npm run build --prefix backend
30
31
- - name: Build frontend
32
- run: npm run build --prefix frontend
+ run: cd frontend && npm install && cd ..
33
34
- name: Run backend tests
35
run: npm test --prefix backend
0 commit comments