File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ jobs:
543
543
- name : Run docstring compliance check
544
544
run : |
545
545
source venv/bin/activate
546
- python .github/workflows/scripts/check_docstrings.py --directories .github
546
+ python .github/workflows/scripts/check_docstrings.py --directories .github
547
547
Check-Dependencies :
548
548
name : Check Dependencies
549
549
runs-on : ubuntu-latest
@@ -557,8 +557,13 @@ jobs:
557
557
with :
558
558
node-version : ' 22.x'
559
559
560
+ - name : Cache npm modules
561
+ uses : actions/cache@v4
562
+ with :
563
+ path : ~/.npm
564
+ key : ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
560
565
- name : Install Dependencies
561
- run : npm install
566
+ run : npm ci
562
567
563
568
- name : Check for Unused and Missing Dependencies
564
- run : npm run check-dependencies
569
+ run : npm run check-dependencies
You can’t perform that action at this time.
0 commit comments