pipeline: build: image: node:16-alpine commands: - apk add make - apk add go - apk add go-bindata - make setup-code - (cd client/ && yarn generate) - make -C server build when: branch: none frontend: image: node:16-alpine commands: - date - ls -l - date >step-frontend.txt - ls -l backend: image: golang:1.18 commands: - date - ls -l - date >step-backend.txt - ls -l