pipeline: backend: image: golang commands: - GOPATH=$(pwd)/go/deps:$(pwd)/go - go get ./go/src/... - go get -t ./go/src/... - go test ./go/src/... - go build flowserver - cp $(pwd)/go/bin/flowserver ../DIST frontend: image: node:6 commands: - cd browser/vue-flow - yarn build - cp dist ../../DIST/web - ls ../../