Skip to content

Commit 7aa857d

Browse files
skitsanosclaude
andcommitted
refactor: remove outdated ESLint from code quality workflow
- Remove ESLint dependencies and setup steps - Keep essential code quality checks (TODO/FIXME, console.log, secrets) - Simplify workflow by removing outdated linting technology - Consolidate into single code-checks job 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 710a052 commit 7aa857d

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,14 @@ on:
77
branches: [ master, main ]
88

99
jobs:
10-
lint:
10+
code-checks:
1111
runs-on: ubuntu-latest
1212

1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4
1616

17-
- name: Setup Bun
18-
uses: oven-sh/setup-bun@v1
19-
with:
20-
bun-version: latest
21-
22-
- name: Install dependencies
23-
run: bun install
24-
25-
- name: Run ESLint
26-
run: |
27-
# Install ESLint if not present
28-
if ! command -v eslint &> /dev/null; then
29-
echo "ESLint not found, installing..."
30-
bun add -D eslint
31-
fi
32-
33-
# Run linting on JavaScript files
34-
find src -name "*.js" -type f | head -10 | xargs ls -la || echo "No JS files found or ESLint not configured"
35-
continue-on-error: true
36-
37-
- name: Check code formatting
17+
- name: Check code quality
3818
run: |
3919
# Check for common code issues
4020
echo "Checking for TODO/FIXME comments..."

0 commit comments

Comments
 (0)