forked from sombochea/booler
Sambo Chea
c2d7a8f8f4
Some checks reported errors
continuous-integration/drone/push Build encountered an error
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 |