From 9e706040872a321a52288f0bc19010dc740d7ac8 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sun, 6 Sep 2026 23:48:22 -0700 Subject: [PATCH] fix: change npm ci to npm install (lockfile not in repo) 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. --- .gitea/workflows/build-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-push.yml b/.gitea/workflows/build-push.yml index faf4535..849f24c 100644 --- a/.gitea/workflows/build-push.yml +++ b/.gitea/workflows/build-push.yml @@ -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"