From 3789baa35cc3df79cf8b825b2b1cf7ecdecd6655 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Wed, 17 Mar 2021 12:50:42 +0700 Subject: [PATCH] Add node image test for yarn test --- .drone.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index a9bb350..c08feb5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,8 +15,9 @@ steps: - git clone https://git.cubetiqs.com/CUBETIQ/prisma-starter.git . - git checkout $DRONE_COMMIT -steps: - - name: build - commands: - - pwd - - echo "Successfully!" +- name: test + image: node + commands: + - yarn + - yarn migrate + - yarn test