From 95dac1ab69f7856a1b29a7874599682403fbda25 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 16 Dec 2016 21:21:58 +0100 Subject: [PATCH] add ci --- .gitignore | 5 +++++ .gitlab-ci.yml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 1 + tslint.json | 3 +++ 4 files changed, 68 insertions(+) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 tslint.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff6e407 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +coverage/ +pages/ +node_modules/ +public/ + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f2d2ff7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,59 @@ +image: hosttoday/ht-docker-node:npmts + +stages: +- test +- release +- trigger +- pages + +testLEGACY: + stage: test + script: + - npmci test legacy + tags: + - docker + allow_failure: true + +testLTS: + stage: test + script: + - npmci test lts + tags: + - docker + +testSTABLE: + stage: test + script: + - npmci test stable + 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 --host gitlab + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public diff --git a/package.json b/package.json index 1cdb1e5..e384ef8 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "description": "dropin replacement for q", "main": "dist/index.js", + "typings": "dist/index.d.ts", "scripts": { "test": "(npmts)" }, diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..45052ad --- /dev/null +++ b/tslint.json @@ -0,0 +1,3 @@ +{ + "extends": "tslint-config-standard" +}