diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35f1138..13c0aa2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,19 @@ -image: registry.gitlab.com/pages/hugo/hugo_extended:latest +image: node:latest variables: GIT_SUBMODULE_STRATEGY: recursive -build: - image: node:latest +install: + stage: install script: - npm install + artifacts: + paths: + - node_modules/ test: + before_script: + - apt-get update -qq && apt-get install -y -qq hugo script: - hugo except: @@ -16,6 +21,8 @@ test: - $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH pages: + before_script: + - apt-get update -qq && apt-get install -y -qq hugo script: - hugo artifacts: