Compare commits

...

2 Commits

Author SHA1 Message Date
5e579901d5 3.0.18 2017-09-08 23:30:38 +02:00
91d10f8b8f update ci 2017-09-08 23:30:31 +02:00
2 changed files with 30 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
# gitzone standard
image: hosttoday/ht-docker-node:stable
image: hosttoday/ht-docker-node:npmci
cache:
paths:
@@ -7,18 +7,28 @@ cache:
key: "$CI_BUILD_STAGE"
stages:
- mirror
- test
- release
- trigger
- pages
before_script:
- yarn global add npmci@2.4.1
- yarn install npmci@latest
mirror:
stage: mirror
script:
- npmci git mirror
tags:
- docker
testLEGACY:
stage: test
script:
- npmci test legacy
- npmci node install legacy
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
@@ -27,7 +37,9 @@ testLEGACY:
testLTS:
stage: test
script:
- npmci test lts
- npmci node install lts
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
@@ -35,7 +47,9 @@ testLTS:
testSTABLE:
stage: test
script:
- npmci test stable
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
@@ -43,7 +57,8 @@ testSTABLE:
release:
stage: release
script:
- npmci publish npm
- npmci npm prepare
- npmci npm publish
only:
- tags
tags:

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "3.0.17",
"version": "3.0.18",
"description": "node and docker in gitlab ci on steroids",
"main": "dist/index.js",
"typings": "dist/index.d.ts",