pipeline: Frontend build: image: node:16-alpine commands: - cd ui - npm install -g pnpm - pnpm install - pnpm run build Backend test: image: golangci/golangci-lint:latest commands: - go get -t ./src/... - golangci-lint run --timeout 5m - go test -v ./src/...