thelounge/.drone.yml
DataHoarder bdeac38251
All checks were successful
continuous-integration/drone/push Build is passing
ci: added DroneCI test support
2023-06-07 12:09:36 +02:00

15 lines
269 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: node:20-alpine3.18
commands:
- apk update
- apk add --no-cache git
- yarn --frozen-lockfile --non-interactive
- NODE_ENV=production yarn build
- yarn test