macos-pipeline-drone/.drone.yml
Sambo Chea 3789baa35c
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Add node image test for yarn test
2021-03-17 12:50:42 +07:00

24 lines
321 B
YAML

kind: pipeline
type: exec
name: default
platform:
os: darwin
arch: amd64
clone:
disable: true
steps:
- name: clone
commands:
- git clone https://git.cubetiqs.com/CUBETIQ/prisma-starter.git .
- git checkout $DRONE_COMMIT
- name: test
image: node
commands:
- yarn
- yarn migrate
- yarn test