File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed
Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments