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: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Install Dependencies - name: Install Dependencies
run: npm install --no-package-lock run: npm install
- name: Run CI Tests - name: Run CI Tests
run: npm run ci run: npm run ci

View file

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