diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..797dcc7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,21 @@ +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 \ No newline at end of file