Skip to content

Commit bb4d220

Browse files
babayomiclaude
andcommitted
Fix GitHub Actions deployment: Use npm install instead of npm ci
- Remove npm cache configuration that requires package-lock.json - Use npm install for dependencies installation - Resolves deployment error for projects without lock files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d325176 commit bb4d220

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ jobs:
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: '18'
31-
cache: 'npm'
3231

3332
- name: Install dependencies
34-
run: npm ci
33+
run: npm install
3534

3635
- name: Build CSS
3736
run: npm run build

0 commit comments

Comments
 (0)