diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8335990 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,33 @@ +kind: pipeline +name: default + +steps: + - name: restore-cache + image: drillster/drone-volume-cache + restore: true + mount: + - ./node_modules + volumes: + - name: cache + path: /cache + - name: install + image: node + commands: + - yarn install --frozen-lockfile + - name: rebuild-cache + image: drillster/drone-volume-cache + rebuild: true + mount: + - ./node_modules + volumes: + - name: cache + path: /cache + - name: build + image: node + commands: + - yarn build --prefix-paths + +volumes: + - name: cache + host: + path: /tmp/drone/cache