We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c8d8d3 commit cc9dcc4Copy full SHA for cc9dcc4
.github/workflows/reactjs_ci_cd.yml
@@ -19,8 +19,13 @@ jobs:
19
with:
20
node-version: 20
21
22
- - name: Install dependencies
23
- run: npm install
+ - name: Install root dependencies
+ run: npm install # This will install the dependencies from the root `package.json`
24
+
25
+ - name: Install frontend dependencies
26
+ run: |
27
+ cd frontend # Navigate to the frontend directory
28
+ npm install # Install the frontend dependencies from `frontend/package.json`
29
30
- name: Run ESLint and auto-fix syntax/style errors
31
run: npx eslint --config ./frontend/eslint.config.js --fix frontend
0 commit comments