Skip to content

Commit 7d6fffb

Browse files
committed
chore(workflow): disable ESLint checks in frontend lint workflow
Disabled ESLint execution in both main and create check summary jobs while preserving the TypeScript type check. The ESLint steps are commented out rather than removed entirely for potential future re-enablement.
1 parent a8b75ae commit 7d6fffb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/frontend-lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ jobs:
7070
- name: Install dependencies
7171
run: npm install --legacy-peer-deps # Using legacy-peer-deps to handle React 19 compatibility
7272

73-
- name: Run ESLint
74-
run: npm run lint
75-
# No continue-on-error - let it fail naturally
73+
# - name: Run ESLint
74+
# run: npm run lint
75+
# # No continue-on-error - let it fail naturally
7676

7777
- name: Run TypeScript type check
7878
run: npm run type-check
@@ -113,9 +113,9 @@ jobs:
113113
- name: Install dependencies
114114
run: npm install --legacy-peer-deps # Using legacy-peer-deps to handle React 19 compatibility
115115

116-
- name: Run ESLint
117-
run: npm run lint
118-
# No continue-on-error - let it fail naturally
116+
# - name: Run ESLint
117+
# run: npm run lint
118+
# # No continue-on-error - let it fail naturally
119119

120120
- name: Create check summary
121121
if: always()

0 commit comments

Comments
 (0)