Use npm install instead of npm ci (no lockfile)

This commit is contained in:
tyler
2026-06-04 18:48:21 -06:00
committed by default
parent 2635c0a99d
commit 4eb6b173e0
+2 -2
View File
@@ -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