Fix npm install failures in GitHub Actions

Replace 'npm ci' with 'npm install' to handle package-lock.json
inconsistencies. The package-lock.json was missing dependencies
causing 'npm ci' to fail with "Missing from lock file" errors.

Using 'npm install' with --legacy-peer-deps allows workflows to
proceed while maintaining dependency resolution.

🤖 Generated with [Qoder][https://qoder.com]
This commit is contained in:
2025-11-16 04:38:32 +00:00
parent 53ac0ce696
commit 94872a33c8
3 changed files with 8 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ jobs:
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm install --legacy-peer-deps
- name: Add WordPress Playground CLI to dependencies
run: |