npmci/.gitlab-ci.yml

36 lines
431 B
YAML
Raw Permalink Normal View History

2016-05-30 03:11:13 +02:00
image: hosttoday/ht-docker-node:latest
2016-05-30 02:28:47 +02:00
stages:
- test
- release
testLTS:
stage: test
script:
2016-05-30 02:48:08 +02:00
- npmci test lts
2016-05-30 02:28:47 +02:00
tags:
- docker
testSTABLE:
stage: test
script:
2016-05-30 02:35:44 +02:00
- npmci test stable
2016-05-30 02:28:47 +02:00
tags:
- docker
2016-06-01 05:58:43 +02:00
testLEGACY:
stage: test
script:
- npmci test legacy
tags:
- docker
2016-06-01 08:29:14 +02:00
allow_failure: true
2016-05-30 02:28:47 +02:00
release:
stage: release
script:
2016-05-30 02:35:44 +02:00
- npmci publish
2016-05-30 02:28:47 +02:00
only:
- tags
tags:
- docker