From 56180af583c6b780cf0d7f5fc611b1e3688229d5 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 18 Jun 2016 15:07:54 +0200 Subject: [PATCH] integrate gitlab ci --- .gitlab-ci.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++ dist/hook.d.ts | 0 dist/hook.js | 3 +++ dist/index.d.ts | 0 dist/index.js | 3 +++ dist/install.d.ts | 0 dist/install.js | 3 +++ package.json | 3 +++ 8 files changed, 56 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 dist/hook.d.ts create mode 100644 dist/hook.js create mode 100644 dist/index.d.ts create mode 100644 dist/index.js create mode 100644 dist/install.d.ts create mode 100644 dist/install.js diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3f6443f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,44 @@ +image: hosttoday/ht-docker-node:npmts + +stages: + - test + - release + +testLEGACY: + stage: test + script: + - npmci test legacy + only: + - master + tags: + - docker + - lossless + +testLTS: + stage: test + script: + - npmci test lts + only: + - master + tags: + - docker + - lossless + +testSTABLE: + stage: test + script: + - npmci test stable + only: + - master + tags: + - docker + - lossless + +release: + stage: release + script: + - npmci publish npm + only: + - master + tags: + - lossless \ No newline at end of file diff --git a/dist/hook.d.ts b/dist/hook.d.ts new file mode 100644 index 0000000..e69de29 diff --git a/dist/hook.js b/dist/hook.js new file mode 100644 index 0000000..0b3fc71 --- /dev/null +++ b/dist/hook.js @@ -0,0 +1,3 @@ + + +//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJob29rLmpzIiwic291cmNlc0NvbnRlbnQiOltdfQ== diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 0000000..e69de29 diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 0000000..b8dbb98 --- /dev/null +++ b/dist/index.js @@ -0,0 +1,3 @@ + + +//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbmRleC5qcyIsInNvdXJjZXNDb250ZW50IjpbXX0= diff --git a/dist/install.d.ts b/dist/install.d.ts new file mode 100644 index 0000000..e69de29 diff --git a/dist/install.js b/dist/install.js new file mode 100644 index 0000000..6788ca6 --- /dev/null +++ b/dist/install.js @@ -0,0 +1,3 @@ + + +//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbnN0YWxsLmpzIiwic291cmNlc0NvbnRlbnQiOltdfQ== diff --git a/package.json b/package.json index 0ad010a..edb7dde 100644 --- a/package.json +++ b/package.json @@ -24,5 +24,8 @@ "homepage": "https://github.com/pushrocks/cert#readme", "dependencies": { "letsencrypt": "^1.4.4" + }, + "devDependencies": { + "npmts-g": "^5.2.6" } }