ci: Add frontend step
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Glenn Y. Rolland 2022-08-18 21:25:18 +02:00
parent 53ee8a8faf
commit 9dfa04fa01

View file

@ -4,15 +4,16 @@ 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 ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- go build
- make build-binary
#