Skip to content

Commit 1c0bc3d

Browse files
Added package-lock fix.
1 parent 7428a79 commit 1c0bc3d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
node-version: 20.x
2222
cache: 'npm'
2323

24+
25+
- name: "🧩 Generate ephemeral package-lock.json"
26+
run: npm install --package-lock-only
27+
2428
- name: "🧩 Install dependencies (ci)"
2529
run: npm ci --legacy-peer-deps
2630

@@ -31,6 +35,9 @@ jobs:
3135
if: github.ref == 'refs/heads/main'
3236
run: node scripts/bumpVersion.js
3337

38+
- name: "🧹 Remove ephemeral package-lock.json"
39+
run: rm -f package-lock.json
40+
3441
- name: '🔧 Configure Git for Automation'
3542
if: github.ref == 'refs/heads/main'
3643
run: |

0 commit comments

Comments
 (0)