rickvanlieshout.com/.drone.yml

20 lines
284 B
YAML
Raw Normal View History

2023-01-09 22:02:27 +01:00
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 run test:coverage
2023-01-09 22:02:27 +01:00
- name: build
image: node:19.4.0
commands:
- npm run build