smartnginx/.gitlab-ci.yml

40 lines
525 B
YAML
Raw Normal View History

2016-07-06 01:17:45 +00:00
image: hosttoday/ht-docker-node:npmts
stages:
- test
- release
2016-07-24 23:54:36 +00:00
before_script:
- "apt-get update && apt-get install nginx -y"
2016-07-06 01:17:45 +00:00
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
2016-07-24 23:54:36 +00:00
environment: npmjs-com_registry
2016-07-06 01:17:45 +00:00
script:
- npmci publish
only:
- tags
tags:
- docker