SEBRAUC/.drone.yml
Theta-Dev b1b3ab3ff6
All checks were successful
continuous-integration/drone/push Build is passing
add dynamic versioning
2021-11-21 23:29:37 +01:00

19 lines
375 B
YAML

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