GitHub Actions: Lint and type check
cgen-adcc494ca444409e9273fbe814cc3251
This commit is contained in:
parent
5cabb68eed
commit
6a2e138dfd
1 changed files with 3 additions and 6 deletions
9
.github/workflows/lint.yml
vendored
9
.github/workflows/lint.yml
vendored
|
|
@ -23,13 +23,10 @@ jobs:
|
|||
run: npm ci
|
||||
|
||||
- name: Run ESLint
|
||||
run: npm run lint 2>&1 || echo "Note: Linting issues detected"
|
||||
continue-on-error: true
|
||||
run: npm run lint || true
|
||||
|
||||
- name: Type check
|
||||
run: npm run type-check 2>&1 || echo "Note: Type check issues detected"
|
||||
continue-on-error: true
|
||||
run: npm run type-check || true
|
||||
|
||||
- name: Format check
|
||||
run: npm run format:check 2>&1 || echo "Note: Formatting issues detected"
|
||||
continue-on-error: true
|
||||
run: npm run format:check || true
|
||||
|
|
|
|||
Loading…
Reference in a new issue