Skip to content

Commit

Permalink
fix: resolve ESLint dependencies and use compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Assistant committed Oct 28, 2024
1 parent e78b526 commit 6e89960
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:

- name: Install dependencies
run: |
# Clear npm cache and remove lock file
npm cache clean --force
# Remove existing lock file and clear cache
rm -f package-lock.json
# Install dependencies and generate new lock file
npm install
npm cache clean --force
# Install dependencies with legacy peer deps to handle ESLint plugin conflicts
npm install --legacy-peer-deps
# Ensure electron is properly installed for the tests
npm rebuild electron
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-table": "^7.7.20",
"@types/react-virtualized": "^9.21.29",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@wdio/cli": "8.32.4",
"@wdio/cucumber-framework": "8.32.4",
"@wdio/local-runner": "8.32.4",
Expand All @@ -64,8 +64,7 @@
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-config-typescript": "^3.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
Expand Down

0 comments on commit 6e89960

Please sign in to comment.