Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yann510 committed Oct 31, 2024
1 parent d7ca8d9 commit 7fbee37
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
node-version: 22

- name: Remove package versions from package-lock.json for caching
run: jq 'del(.version, .packages[""].version)' package-lock.json > package-lock.json
run: |
jq 'del(.version, .packages[""].version)' package-lock.json > package-lock.temp.json
mv package-lock.temp.json package-lock.json
- name: Cache dependencies
id: cache
Expand Down

0 comments on commit 7fbee37

Please sign in to comment.