Another try to fix ESLint CI run

This commit is contained in:
Jakub Hanko 2024-05-24 17:03:22 +02:00
parent ab31247bd8
commit d024b840bf
No known key found for this signature in database
GPG Key ID: 775D427937A306CC
2 changed files with 3 additions and 2 deletions

View File

@ -28,4 +28,4 @@ jobs:
run: npm ci # Use 'npm ci' to install dependencies
- name: eslint # Step to run linters
run: eslint .
run: npm run eslint-ci

View File

@ -11,7 +11,8 @@
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"eslint": "eslint --fix ."
"eslint": "eslint --fix .",
"eslint-ci": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.3.0",