From cfa360a2bae5198b18a82dc1c729b33b1bd8b0dc Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 9 Mar 2017 20:55:30 +0100 Subject: [PATCH] add npmextra.json + gitlab.ci --- .gitlab-ci.yml | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ npmextra.json | 7 ++++++ 2 files changed, 70 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 npmextra.json diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1cfde96 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,63 @@ +# gitzone standard +image: hosttoday/ht-docker-node:npmts + +stages: +- test +- release +- trigger +- pages + +testLEGACY: + stage: test + script: + - npmci test legacy + coverage: /\d+.?\d+?\%\s*coverage/ + tags: + - docker + allow_failure: true + +testLTS: + stage: test + script: + - npmci test lts + coverage: /\d+.?\d+?\%\s*coverage/ + tags: + - docker + +testSTABLE: + stage: test + script: + - npmci test stable + coverage: /\d+.?\d+?\%\s*coverage/ + tags: + - docker + +release: + stage: release + script: + - npmci publish + only: + - tags + tags: + - docker + +trigger: + stage: trigger + script: + - npmci trigger + only: + - tags + tags: + - docker + +pages: + image: hosttoday/ht-docker-node:npmpage + stage: pages + script: + - npmci command npmpage --publish gitlab + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public diff --git a/npmextra.json b/npmextra.json new file mode 100644 index 0000000..c4494f5 --- /dev/null +++ b/npmextra.json @@ -0,0 +1,7 @@ +{ + "npmci": { + "globalNpmTools": [ + "npmts" + ] + } +} \ No newline at end of file