From 723b1e666dc61b733efdec2861c4d8b7fea449aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Thu, 7 Nov 2019 20:25:08 +0100 Subject: Use nextcloudci Docker image for node MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The NPM major version was recently bumped in the node:lts Docker image, so CI started to fail due to unclean JavaScript builds. The server seems to require the previous version due to incompatible dependencies, so for consistency the JavaScript files are still built and checked with the previous version instead of updating them to the new one. Signed-off-by: Daniel Calviño Sánchez --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.drone.yml') diff --git a/.drone.yml b/.drone.yml index 6fc1aad68..5224e0d3a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,12 +3,12 @@ # #steps: # - name: check-simplewebrtc-bundle -# image: node:lts +# image: nextcloudci/node:node-7 # commands: # - make npm-init # - ./check-simplewebrtc-bundle.sh # - name: check-vuejs-builds -# image: node:lts +# image: nextcloudci/node:node-7 # commands: # - make npm-init # - ./check-vuejs-builds.sh @@ -27,7 +27,7 @@ name: eslint steps: - name: eslint - image: node:lts + image: nextcloudci/node:node-7 commands: - make dev-setup - make lint -- cgit v1.2.3