chore: generate package-lock.json from scratch to ensure accuracy (#7077)

This commit is contained in:
Louis Lam
2026-03-02 10:03:10 +08:00
committed by GitHub
parent 9be0f8a081
commit 10180dbd88

View File

@@ -30,8 +30,10 @@ jobs:
with:
node-version: 20
- name: Run npm update
run: npm update --package-lock-only
- name: Generate lockfile from scratch
run: |
rm -f package-lock.json
npm install --package-lock-only
- name: Check if there are changes
id: check_changes