forked from sombochea/booler
21 lines
344 B
YAML
21 lines
344 B
YAML
|
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
|