npmci/.gitlab-ci.yml
2016-11-15 13:02:56 +01:00

71 lines
989 B
YAML

image: node:latest
stages:
- test
- release
- trigger
- page
before_script:
- npm install npmci -q -g
testLTS:
stage: test
script:
- npmci install lts
- npmci command npm install -g npmts
- npmci test lts
tags:
- docker
testSTABLE:
stage: test
script:
- npmci install stable
- npmci command npm install -g npmts
- npmci test stable
tags:
- docker
testLEGACY:
stage: test
script:
- npmci install legacy
- npmci command npm install -g npmts
- npmci test legacy
tags:
- docker
allow_failure: true
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: page
script:
- npmci test stable
- npmci command npmpage --host gitlab
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public