From ce9bf701e17f8cbe46fc0db84295d265c1726992 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 7 Aug 2019 04:16:22 +0200 Subject: [PATCH] ttempting to fix installing bower in CI. --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77c92a3..bd46afa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,8 @@ cache: test: script: - - apk --update add bower + - apk --update add npm + - npm install -g bower - bundle install --path vendor - bower install - bundle exec middleman build @@ -15,7 +16,8 @@ test: pages: script: - - apk --update add bower + - apk --update add npm + - npm install -g bower - bundle install --path vendor - bower install - bundle exec middleman build -- GitLab