Skip to content

Commit 742e9c9

Browse files
debug
1 parent 4574a4e commit 742e9c9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/reactjs_ci_cd.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,20 @@ jobs:
2222
echo "Listing directories and files:"
2323
ls -la # List all files and directories, including hidden ones
2424
25+
- name: List files in frontend directory
26+
run: ls -al frontend
27+
2528
- name: Set up Node.js
2629
uses: actions/setup-node@v4
2730
with:
2831
node-version: 20
2932

30-
- name: Install dependencies
31-
run: npm install
32-
3333
- name: Run ESLint and auto-fix syntax/style errors
3434
run: npx eslint --config ./frontend/eslint.config.js --fix frontend
3535

36+
- name: Install dependencies
37+
run: npm install
38+
3639
# Applies syntax/style fixes from ESLint as a commit
3740
- name: Commit and push changes
3841
run: |

0 commit comments

Comments
 (0)