Skip to content

Commit 0ed0bc1

Browse files
fix:coderabbit sugg
1 parent 7f61060 commit 0ed0bc1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pull-request.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,9 +557,13 @@ jobs:
557557
with:
558558
node-version: '22.x'
559559

560+
- name: Cache npm modules
561+
uses: actions/cache@v4
562+
with:
563+
path: ~/.npm
564+
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
560565
- name: Install Dependencies
561-
run: npm install
566+
run: npm ci
562567

563568
- name: Check for Unused and Missing Dependencies
564569
run: npm run check-dependencies
565-

0 commit comments

Comments
 (0)