smartnginx/.gitlab-ci.yml
2016-07-25 01:54:36 +02:00

40 lines
525 B
YAML

image: hosttoday/ht-docker-node:npmts
stages:
- test
- release
before_script:
- "apt-get update && apt-get install nginx -y"
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
environment: npmjs-com_registry
script:
- npmci publish
only:
- tags
tags:
- docker