We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running this plugin in our CI (drone v0.8) but it seems that it doesn't cache the node modules folder.
My pipeline looks like this:
restore-cache: image: drillster/drone-volume-cache restore: true cache_key: [DRONE_REPO_OWNER, DRONE_REPO_NAME, DRONE_BRANCH] mount: - ./node_modules volumes: - /tmp/cache install: image: node:14.15.4 commands: - npm install rebuild-cache: image: drillster/drone-volume-cache rebuild: true cache_key: [DRONE_REPO_OWNER, DRONE_REPO_NAME, DRONE_BRANCH] mount: - ./node_modules volumes: - /tmp/cache
In the first commit, I get this from the rebuild-cache step
rebuild-cache
Rebuilding cache for folder ./node_modules...
In the second commit, I get a No cache for ./node_modules.
No cache for ./node_modules
Am I missing anything here in these steps?
The text was updated successfully, but these errors were encountered:
It looks like it should work. Did you check the contents of the cache folder (/tmp/cache)?
Sorry, something went wrong.
No branches or pull requests
I'm running this plugin in our CI (drone v0.8) but it seems that it doesn't cache the node modules folder.
My pipeline looks like this:
In the first commit, I get this from the
rebuild-cache
stepIn the second commit, I get a
No cache for ./node_modules
.Am I missing anything here in these steps?
The text was updated successfully, but these errors were encountered: