Files
ci/.drone.yml
T
2022-04-23 09:32:03 +00:00

16 lines
195 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: backend
image: golang
commands:
- go build
- go test
- name: frontend
image: node
commands:
- npm install
- npm run test