From 1a25130ea7e78630a0d259d916e6f456bebfc9d2 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 20 Jul 2026 15:24:50 -0400 Subject: [PATCH] Use npm install in verify-no-snapshot-versions test workflow The workflow ran npm ci, which requires a committed package-lock.json. Lock files are gitignored across this repo, so npm ci fails with EUSAGE (no package-lock.json). Switch to npm install to match every other action test workflow (extract-bom-versions, update-project-versions, etc.). Signed-off-by: Ryan Baxter --- .github/workflows/test-verify-no-snapshot-versions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-verify-no-snapshot-versions.yml b/.github/workflows/test-verify-no-snapshot-versions.yml index 6fe2fa7..fdeb8d3 100644 --- a/.github/workflows/test-verify-no-snapshot-versions.yml +++ b/.github/workflows/test-verify-no-snapshot-versions.yml @@ -28,7 +28,7 @@ jobs: cache-dependency-path: .github/actions/verify-no-snapshot-versions/package.json - name: Install dependencies - run: npm ci + run: npm install - name: Run unit tests run: npm test @@ -145,7 +145,7 @@ jobs: cache-dependency-path: .github/actions/verify-no-snapshot-versions/package.json - name: Install dependencies - run: npm ci + run: npm install - name: Rebuild dist run: npm run build