Skip to content

Commit 9c8d8d3

Browse files
attempting to fix
1 parent 742e9c9 commit 9c8d8d3

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

.github/workflows/reactjs_ci_cd.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,17 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4
1616

17-
# Ensure we are in the root directory of the repo (DEBUG)
18-
- name: Ensure we're in the root directory
19-
run: |
20-
echo "Current working directory:"
21-
pwd # This prints the current directory to the logs, confirming we're in the root
22-
echo "Listing directories and files:"
23-
ls -la # List all files and directories, including hidden ones
24-
25-
- name: List files in frontend directory
26-
run: ls -al frontend
27-
2817
- name: Set up Node.js
2918
uses: actions/setup-node@v4
3019
with:
3120
node-version: 20
3221

33-
- name: Run ESLint and auto-fix syntax/style errors
34-
run: npx eslint --config ./frontend/eslint.config.js --fix frontend
35-
3622
- name: Install dependencies
3723
run: npm install
3824

25+
- name: Run ESLint and auto-fix syntax/style errors
26+
run: npx eslint --config ./frontend/eslint.config.js --fix frontend
27+
3928
# Applies syntax/style fixes from ESLint as a commit
4029
- name: Commit and push changes
4130
run: |

0 commit comments

Comments
 (0)