npmci/.gitlab-ci.yml

32 lines
379 B
YAML
Raw Normal View History

2016-05-30 00:28:47 +00:00
image: hosttoday/ht-docker-node
stages:
- test
- release
testLTS:
stage: test
script:
- npmci install 4
- npm install
- npm test
tags:
- docker
testSTABLE:
stage: test
script:
- npmci install stable
- npm install
- npm test
tags:
- docker
release:
stage: release
script:
- npm -v
only:
- tags
tags:
- docker