booler/.drone.yml

21 lines
344 B
YAML
Raw Normal View History

2020-04-17 20:23:10 +07:00
pipeline:
restore-cache:
image: drillster/drone-volume-cache
restore: true
mount:
- ./node_modules
volumes:
- /tmp/cache:/cache
install:
image: node:8.6.0
commands:
- node -v
- npm -v
- npm install
testing:
image: node:8.6.0
group: testing
commands:
- npm run test