From 6bc9d0a49b402dc7721d605662be1c9351ca0e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 17 Dec 2019 22:55:50 +0100 Subject: [PATCH] Use the same node version over all frontend jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 074cf50f6..5139bb537 100644 --- a/.drone.yml +++ b/.drone.yml @@ -136,11 +136,11 @@ kind: pipeline name: frontend steps: - name: install - image: node:11-alpine + image: node:lts-alpine commands: - npm install - name: eslint - image: node:11-alpine + image: node:lts-alpine commands: - npm run lint - name: jsbuild