It was currently only checking for node_modules on the root folder, and even those were being ignored due to the usage of npm ci. As a result, setting/checking the cache was just a waste of time.
Now, it is actually doing the restore-check-set cache steps for each project, as well as the root 😄
See https://app.circleci.com/jobs/github/toblich/nosy-cat/104 for an example of a build that's actually caching its dependencies.
It was currently only checking for
node_modules
on the root folder, and even those were being ignored due to the usage ofnpm ci
. As a result, setting/checking the cache was just a waste of time.Now, it is actually doing the restore-check-set cache steps for each project, as well as the root 😄
TODO
master