ci: added DroneCI test support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2023-06-07 11:48:40 +02:00
parent 2f1620927f
commit bdeac38251
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

14
.drone.yml Normal file
View file

@ -0,0 +1,14 @@
---
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