From ae499fd8a0cc72fffea367c76d83dd6a3cd8b9ab Mon Sep 17 00:00:00 2001 From: konrad Date: Sun, 3 Mar 2019 21:38:12 +0000 Subject: [PATCH] Fix for task dates update (#24) --- .drone.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2c5adcc47..eaa7ab7cb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,14 +9,15 @@ clone: pipeline: build: - image: node + image: node:11-alpine pull: true group: build-static commands: - - npm install - - npm run lint + - apk add yarn + - yarn + - yarn run lint - "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config - - npm run build + - yarn run build when: event: [push, tag, pull_request]