fling/.drone.yml
Armin Friedl 226d2802ef
Some checks failed
continuous-integration/drone/push Build is failing
Fix tests and add build pipeline
2020-06-07 12:50:49 +02:00

18 lines
299 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build-service
image: adoptopenjdk:11-hotspot
commands:
- ls -al
- cd service/fling
- ./mvnw clean package
- name: build-web
image: node:latest
commands:
- ls -al
- cd web/fling
- npm install && npm run build