Skip to content

Commit

Permalink
Ensure up-to-date dependencies in ESLint workflows.
Browse files Browse the repository at this point in the history
Removed the redundant restore-keys from the ESLint workflows for both
frontend and backend to ensure we use up-to-date dependencies and avoid
fallback issues when new dependencies are added.

Signed-off-by: Nikolay Martyanov <[email protected]>
  • Loading branch information
OhmSpectator committed Jul 11, 2024
1 parent 17456ae commit 2e62223
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/eslint-back.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ jobs:
with:
path: ./backend/node_modules
key: ${{ runner.os }}-back-node-${{ hashFiles('./backend/package.json') }}
restore-keys: |
${{ runner.os }}-back-node-

- name: Install dependencies
run: npm install
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/eslint-front.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ jobs:
with:
path: ./frontend/node_modules
key: ${{ runner.os }}-front-node-${{ hashFiles('./frontend/package.json') }}
restore-keys: |
${{ runner.os }}-front-node-

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 2e62223

Please sign in to comment.