feat(ci): add oxlint job to CI workflow
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / oxlint (pull_request) Successful in 30s
CI / prettier (pull_request) Successful in 34s
CI / eslint (pull_request) Successful in 38s
CI / test-build (pull_request) Successful in 37s
CI / Checkstyle Main (pull_request) Successful in 1m29s
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / oxlint (pull_request) Successful in 30s
CI / prettier (pull_request) Successful in 34s
CI / eslint (pull_request) Successful in 38s
CI / test-build (pull_request) Successful in 37s
CI / Checkstyle Main (pull_request) Successful in 1m29s
- Introduced oxlint job to the CI workflow for enhanced linting checks. - Updated ci.yml to include a new job `oxlint` that runs on frontend changes. - Adjusted package.json scripts to separate oxlint from the general lint task.
This commit is contained in:
parent
f3adf78b50
commit
7b94fd56bc
2 changed files with 31 additions and 1 deletions
|
@ -9,7 +9,8 @@
|
|||
"test": "bunx @angular/cli test",
|
||||
"format": "prettier --write \"src/**/*.{ts,html,css,scss}\"",
|
||||
"format:check": "prettier --check \"src/**/*.{ts,html,css,scss}\"",
|
||||
"lint": "bunx @angular/cli lint && bunx oxlint --deny-warnings"
|
||||
"lint": "bunx @angular/cli lint",
|
||||
"oxlint": "bunx oxlint --deny-warnings"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
|
Reference in a new issue