SEBRAUC/woodpecker.yml
ThetaDev 7620f0d9f2
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci: add woodpecker.yml
2023-01-03 21:22:19 +01:00

15 lines
321 B
YAML

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/...