Remove unnecessary "--no-package-lock" from "npm install" workflows.

This commit is contained in:
David Anson 2025-06-15 15:32:38 -07:00
parent fcd7a77737
commit 13f41cf637
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --no-package-lock
run: npm install
- name: Run CI Tests
run: npm run ci

View file

@ -24,7 +24,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --no-package-lock
run: npm install
- name: Clone Test Repos
run: npm run clone-test-repos
- name: Lint Test Repos