31 lines
467 B
YAML
31 lines
467 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: vue-admin
|
|
|
|
|
|
trigger:
|
|
branch: ci
|
|
|
|
steps:
|
|
|
|
# - name: restore
|
|
# image: drillster/drone-volume-cache
|
|
# volumes:
|
|
# - name: modules
|
|
# path: /cache
|
|
# settings:
|
|
# restore: true
|
|
# mount:
|
|
# - ./node_modules
|
|
|
|
- name: build
|
|
image: node:12.16.1
|
|
commands:
|
|
- yarn
|
|
- yarn build:prod
|
|
|
|
|
|
volumes:
|
|
- name: modules
|
|
host:
|
|
path: /mnt/d/ci_volumes/fe-ci-demo/node_modules |