summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2019-03-10 18:16:04 +0900
committerTakuya Noguchi <takninnovationresearch@gmail.com>2019-03-10 18:26:37 +0900
commit2b4aaaa8aa24cdd40df4ad0d351a45cfa9b18822 (patch)
tree7ef752c45766c01075343c9b99963b3c7918cd6d
parentfa90b10f228646ee746337ad0edf9e840569dd80 (diff)
downloadgitlab-ce-2b4aaaa8aa24cdd40df4ad0d351a45cfa9b18822.tar.gz
Update node.js to 10.15.3 in CI template for Hexo
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
-rw-r--r--changelogs/unreleased/58748-update-nodejs-to-10-15-3.yml5
-rw-r--r--lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml7
2 files changed, 9 insertions, 3 deletions
diff --git a/changelogs/unreleased/58748-update-nodejs-to-10-15-3.yml b/changelogs/unreleased/58748-update-nodejs-to-10-15-3.yml
new file mode 100644
index 00000000000..4c7e4b5c604
--- /dev/null
+++ b/changelogs/unreleased/58748-update-nodejs-to-10-15-3.yml
@@ -0,0 +1,5 @@
+---
+title: Update node.js to 10.15.3 in CI template for Hexo
+merge_request: 25943
+author: Takuya Noguchi
+type: other
diff --git a/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml b/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
index 02d02250bbf..a9e195370f7 100644
--- a/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
@@ -1,10 +1,11 @@
# Full project: https://gitlab.com/pages/hexo
-image: node:6.10.0
+image: node:10.15.3
pages:
script:
- - npm install
- - ./node_modules/hexo/bin/hexo generate
+ - npm install hexo-cli -g
+ - test -e package.json && npm install
+ - hexo generate
artifacts:
paths:
- public