fix: change npm ci to npm install (lockfile not in repo)
CI / Test (pull_request) Failing after 27s
CI / Build & Push Image (pull_request) Skipped

CI was failing with 'npm ci requires package-lock.json' error.
Use npm install instead since package-lock.json is not committed.
npm install will create the lockfile for future builds.
This commit is contained in:
Story Crater Bot
2026-09-06 23:48:22 -07:00
parent 22f5afdb58
commit 9e70604087
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
run: npm install
- name: Run tests
run: npm test -- --run 2>&1 || echo "Tests completed"