Caching npm dependency with github action
问题 I want to cache npm dependencies so that I does not do npm install every time I push and instead just load it from cache. I think github action support this now?: How do I cache steps in GitHub actions? Here are few cases If package.json changes, which means yarn.lock or package-lock.json changed so do npm install and update cache Extending my above point, the contributor could be doing both yarn install and npm install From the same above question, I changed my github action to something