Update '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build is passing

This commit is contained in:
Lee 2023-03-26 15:44:24 +01:00
parent e24fb3b6a2
commit f07bcca3a2

@ -0,0 +1,58 @@
kind: pipeline
type: docker
name: default
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
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- ./node_modules
# Other branches
- name: test
image: node:18
when:
branch:
exclude:
- main
commands:
- npm run lint
# Main branches
- name: docker
image: plugins/docker
when:
branch:
- main
settings:
username:
from_secret: dockerhub_username
password:
from_secret: dockerhub_password
repo: fascinated/beatsaber-overlay
tags: latest
volumes:
- name: cache
host:
path: /tmp/cache