diff --git a/.github/workflows/npm-update.yml b/.github/workflows/npm-update.yml index 1c79b44b..f659e8f7 100644 --- a/.github/workflows/npm-update.yml +++ b/.github/workflows/npm-update.yml @@ -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