From 5e6cc83de0c1dee13298b1a9d7b9767b799ce97f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 5 Feb 2020 20:26:33 +0100 Subject: [PATCH] Remove node build from drone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .drone.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5139bb537..6ac3a5a55 100644 --- a/.drone.yml +++ b/.drone.yml @@ -130,28 +130,3 @@ trigger: event: - pull_request - push - ---- -kind: pipeline -name: frontend -steps: - - name: install - image: node:lts-alpine - commands: - - npm install - - name: eslint - image: node:lts-alpine - commands: - - npm run lint - - name: jsbuild - image: node:lts-alpine - commands: - - npm run build -trigger: - branch: - - master - - stable* - - vue - event: - - pull_request - - push