8 ms·
TIL: I need to fix my CI pipeline. Gonna create a jira ticket I guess… Thank you!
by DDerTyp 1y ago
TIL: I need to fix my CI pipeline. Gonna create a jira ticket I guess…
Thank you!
- josefbud 1y agoSorry, I had assumed this was what you were doing when I wrote my question but I should have specified. And sorry for now making your npm install step twice as long! ;)
- rimunroe 1y agonpm ci should be much faster in CI as it can install the exact dependency versions directly from the lockfile rather than having to go through the whole dependency resolution algorithm. In CI environments you don't have to wait to delete a potentially large pre-existing node_modules directory since you should be starting fresh each time anyway.
- josefbud 1y agoI've seen pipelines that cache node modules between runs to save time, but yeah if they're not doing that then you're totally right.
- thunderfork 1y ago[dead]