You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
orm/.drone.yml

19 lines
319 B

kind: pipeline
name: default
services:
- name: mongo
image: mongo:4
ports:
- 27017
steps:
- name: unit tests
image: node:12
commands:
- yarn install
- sleep 20
- yarn run test_units
- name: integration tests
image: node:12
commands:
- yarn run test_integration