From e6a86e369bcc324acfc1c5802e65e28fb0705448 Mon Sep 17 00:00:00 2001
From: Lauri Himanen <lauri.himanen@gmail.com>
Date: Mon, 13 Sep 2021 12:57:21 +0300
Subject: [PATCH] Downgrading node.js version from 16.9 -> 14. Running the jest
 test suite is not working with the newer version. When either Jest or node.js
 is fixed we can fall back to the latest node version.

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fd8757a057..27acc35132 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,7 +81,7 @@ python linting:
 
 gui linting:
   stage: test
-  image: node
+  image: node:14
   script:
     - cd gui
     - yarn
@@ -127,7 +127,7 @@ python tests:
 
 gui tests:
   stage: test
-  image: node
+  image: node:14
   script:
     - git submodule sync
     - git submodule update --init -- gui/materia
-- 
GitLab