ci: added drone-ci pipeline file

This commit is contained in:
Rick van Lieshout 2023-01-09 22:02:27 +01:00
parent 5434d6686a
commit 6d17aa3ddf

19
.drone.yml Normal file
View File

@ -0,0 +1,19 @@
kind: pipeline
type: docker
name: default
steps:
- name: install
image: node:19.4.0
commands:
- npm install
- name: test
image: node:19.4.0
commands:
- npm test:coverage
- name: build
image: node:19.4.0
commands:
- npm run build