We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4574a4e commit 742e9c9Copy full SHA for 742e9c9
.github/workflows/reactjs_ci_cd.yml
@@ -22,17 +22,20 @@ jobs:
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
+
28
- name: Set up Node.js
29
uses: actions/setup-node@v4
30
with:
31
node-version: 20
32
- - name: Install dependencies
- run: npm install
-
33
- name: Run ESLint and auto-fix syntax/style errors
34
run: npx eslint --config ./frontend/eslint.config.js --fix frontend
35
36
+ - name: Install dependencies
37
+ run: npm install
38
39
# Applies syntax/style fixes from ESLint as a commit
40
- name: Commit and push changes
41
run: |
0 commit comments