musala/.drone.yml
Glenn Y. Rolland 9dfa04fa01
Some checks failed
continuous-integration/drone/push Build is failing
ci: Add frontend step
2022-08-18 21:25:18 +02:00

20 lines
260 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: Frontend
image: node:18
commands:
- make build-templates
- name: Backend
image: golang:1.13
commands:
- |
go get -v -t -d ./...
- make build-binary
#