kind: pipeline
type: docker
name: default
ports: [3001]
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- ./node_modules
- name: install depends
image: node:18
commands:
- npm install
- name: rebuild-cache
rebuild: true
# Other branches
- name: test
when:
branch:
exclude:
- main
- npm run lint
# Main branches
- name: docker
image: plugins/docker
username:
from_secret: dockerhub_username
password:
from_secret: dockerhub_password
repo: fascinated/beatsaber-overlay
tags: latest
host:
path: /tmp/cache