From 3434bbf815451e8e799d905e7108a4406f8e4bfd Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 30 May 2016 07:05:17 +0200 Subject: [PATCH] add pages to gitlab.yml --- .gitlab-ci.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a445fd7..3bf2137 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ image: hosttoday/ht-docker-node stages: - test - release +- page testLTS: stage: test @@ -25,4 +26,18 @@ release: only: - tags tags: - - docker \ No newline at end of file + - docker + +page: + stage: page + script: + - npmci test lts + - mkdir .public + - cp -r coverage/ .public + - cp -r docs/ .public + - mv .public public + artifacts: + paths: + - public + only: + - master \ No newline at end of file