pipeline: frontend: image: node:16-alpine commands: - cd client - yarn install - yarn generate when: branch: none backend: image: golang:1.18-alpine commands: - apk add make go-bindata - make -C server setup - make -C server build