From f19cac41d2170844700ba2bcf85cb2f19d200555 Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 20 Aug 2020 18:30:56 +0200 Subject: [PATCH] Use Node 14 on CI (#12512) * Use Node 14 on CI Node 14 is sufficiently stable now, use it on CI. * also run build on node 14 Co-authored-by: Lauris BH Co-authored-by: techknowlogick Co-authored-by: zeripath --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0e05f166f..0bb731d18 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,13 +13,13 @@ workspace: steps: - name: deps-frontend pull: always - image: node:12 + image: node:14 commands: - make node_modules - name: lint-frontend pull: always - image: node:12 + image: node:14 commands: - make lint-frontend depends_on: [deps-frontend] @@ -36,7 +36,7 @@ steps: - name: checks-frontend pull: always - image: node:12 + image: node:14 commands: - make checks-frontend depends_on: [deps-frontend] @@ -50,7 +50,7 @@ steps: - name: build-frontend pull: always - image: node:10 # this step is kept at the lowest version of node that we support + image: node:14 commands: - make frontend depends_on: [lint-frontend]