knowyt/.woodpecker.yml
Settel 14546cd7b8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
test: persist between steps
2022-11-05 21:54:26 +01:00

28 lines
502 B
YAML

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