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