If I understand correctly you probably want to change npm install to npm ci. npm install will use the latest compatible dependencies where as npm ci will use what's in package-lock.json.
npm install
npm ci
Yeah, that is a good hint! :)
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
If I understand correctly you probably want to change
npm installtonpm ci.npm installwill use the latest compatible dependencies where asnpm ciwill use what's in package-lock.json.Yeah, that is a good hint! :)