--- kind: pipeline type: kubernetes name: default steps: - name: backend-go1.19 image: golang:1.19 commands: - cd backend/ - go build ./... - go vet ./... # - go run honnef.co/go/tools/cmd/staticcheck@latest ./... - go test -bench=. -benchmem -cover ./... - name: frontend image: node:14 commands: - cd frontend - yarn - yarn build - yarn test