From fd45da35cea024ba8559a5f88c844be7b709a839 Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Thu, 6 Dec 2018 10:39:28 +1100 Subject: [PATCH] gitlab-ci: install hunspell and set locale to en_US --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87ce0423e..a91c283a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ test_all: stage: test script: # chrome drivers - - apt-get update && apt-get install -y libgtk2.0-0 libgtk-3-0 libgconf-2-4 libasound2 libxtst6 libxss1 libnss3 xvfb + - apt-get update && apt-get install -y libgtk2.0-0 libgtk-3-0 libgconf-2-4 libasound2 libxtst6 libxss1 libnss3 xvfb hunspell-en-us - whoami - node -v - yarn -v @@ -19,6 +19,7 @@ test_all: - yarn generate - Xvfb -ac -screen scrn 1280x2000x24 :9.0 & - export DISPLAY=:9.0 + - export LC_ALL=en_US - yarn test tags: - docker