From 4176b0be518d088b84f818ad196ef8b3217c4ce1 Mon Sep 17 00:00:00 2001 From: mifi Date: Tue, 2 May 2023 11:16:46 -0400 Subject: [PATCH] New drone bits --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index c91df55..f6d2b21 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,20 +3,20 @@ type: docker name: default workspace: - path: /drone/src + path: /drone/grow steps: -- name: Lint - image: node:latest - commands: - - yarn install - - yarn lint . -- name: Prettier +- name: Code Style image: node:latest commands: - yarn install - yarn prettier +- name: Code Lint + image: node:latest + commands: + - yarn lint + trigger: branch: - main