Skip to content
This repository has been archived by the owner on Jan 20, 2021. It is now read-only.

Speedy installs

Compare
Choose a tag to compare
@sto3psl sto3psl released this 08 Feb 15:03
· 26 commits to master since this release

npm ci removes node_modules before it installs dependencies.
This means that caching them for the install step is useless.
If instead ~/.npm get's cached, npm ci will fly and it shaved off 10s of the CI build in this pretty small repo.
node_modules caching is still required for all following jobs after install.

  • perf: cache ~/.npm for faster dependency installs (#4)