Add ESLint fix step to lint workflow

Added step to run ESLint with auto-fix option.
This commit is contained in:
pacnpal
2025-10-29 20:30:19 -04:00
committed by GitHub
parent 001416659e
commit 40d19d7e5f

View File

@@ -22,7 +22,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install
- name: Run ESLint fix
run: npx eslint src --fix
continue-on-error: false
- name: Run ESLint - name: Run ESLint
run: bun run lint run: bun run lint
continue-on-error: false continue-on-error: false