1 Commits
Author SHA1 Message Date
Story Crater Bot 9e70604087 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.
2026-09-06 23:48:22 -07:00
+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"