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 a24dc9b commit 3f17f8cCopy full SHA for 3f17f8c
.github/workflows/ci.yml
@@ -74,9 +74,9 @@ jobs:
74
- name: Test package-lock for unexpected modifications
75
run: |
76
npm -v
77
- checksum=$(md5sum package-lock.json)
+ checksum=$(sha512sum package-lock.json)
78
npm install --package-lock-only --no-audit
79
- if ! echo ${checksum} | md5sum --quiet -c -; then
+ if ! echo ${checksum} | sha512sum --quiet -c -; then
80
echo "package-lock.json was modified unexpectedly. Please rebuild it using npm@$(npm -v) and commit the changes."
81
exit 1
82
fi
0 commit comments