Skip to content

Instantly share code, notes, and snippets.

@ashphy
Created October 14, 2017 14:54
Embed
What would you like to do?
pipeline:
restore-cache:
image: drillster/drone-volume-cache
restore: true
mount:
- ./node_modules
volumes:
- /tmp/cache:/cache
build:
image: node
commands:
- npm install
rebuild-cache:
image: drillster/drone-volume-cache
rebuild: true
mount:
- ./node_modules
volumes:
- /tmp/cache:/cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment