From fddb9178c07d85022c01a40ffdc12119b301de4d Mon Sep 17 00:00:00 2001 From: tyler Date: Thu, 4 Jun 2026 18:48:21 -0600 Subject: [PATCH] Use npm install instead of npm ci (no lockfile) --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 99aec05..0b574a7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: node-version: '22' - name: Install dependencies - run: npm ci + run: npm install - name: Build run: npm run build @@ -38,7 +38,7 @@ jobs: # Install production deps only cd $APP_DIR - npm ci --omit=dev + npm install --omit=dev # Copy env if not already there if [ ! -f $APP_DIR/.env.production ]; then