npmci/.gitlab-ci.yml
2016-06-02 18:09:07 +02:00

40 lines
498 B
YAML

image: hosttoday/ht-docker-node:latest
stages:
- test
- release
testLTS:
stage: test
script:
- npmci test lts
tags:
- docker
before_script:
- npm uninstall -g npmci
- npm install -g npmci
testSTABLE:
stage: test
script:
- npmci test stable
tags:
- docker
testLEGACY:
stage: test
script:
- npmci test legacy
tags:
- docker
allow_failure: true
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker