We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7428a79 commit 1c0bc3dCopy full SHA for 1c0bc3d
.github/workflows/deploy.yml
@@ -21,6 +21,10 @@ jobs:
21
node-version: 20.x
22
cache: 'npm'
23
24
+
25
+ - name: "🧩 Generate ephemeral package-lock.json"
26
+ run: npm install --package-lock-only
27
28
- name: "🧩 Install dependencies (ci)"
29
run: npm ci --legacy-peer-deps
30
@@ -31,6 +35,9 @@ jobs:
31
35
if: github.ref == 'refs/heads/main'
32
36
run: node scripts/bumpVersion.js
33
37
38
+ - name: "🧹 Remove ephemeral package-lock.json"
39
+ run: rm -f package-lock.json
40
34
41
- name: '🔧 Configure Git for Automation'
42
43
run: |
0 commit comments