Skip to content

Commit

Permalink
Fix eslint in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
timwekkenbc committed Oct 24, 2024
1 parent 445a29c commit 82c76e6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,3 @@ jobs:
- name: Run ESLint
run: npm run lint:pipeline
continue-on-error: true

- name: Upload ESLint report
uses: actions/upload-artifact@v4
with:
name: eslint-report
path: eslint-report.html
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:pipeline": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --format=html --output-file=eslint-report.html",
"lint:pipeline": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --max-warnings=0",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
Expand Down

0 comments on commit 82c76e6

Please sign in to comment.