tscoverage/.gitlab-ci.yml

42 lines
497 B
YAML
Raw Normal View History

2016-05-26 19:18:14 +00:00
image: hosttoday/ht-docker-node
stages:
- test
- release
2016-05-30 05:05:17 +00:00
- page
2016-05-26 19:18:14 +00:00
testLTS:
stage: test
script:
2016-05-30 03:42:24 +00:00
- npmci test lts
2016-05-26 19:18:14 +00:00
tags:
- docker
testSTABLE:
stage: test
script:
2016-05-30 03:42:24 +00:00
- npmci test stable
2016-05-26 19:18:14 +00:00
tags:
- docker
release:
stage: release
script:
2016-05-30 03:42:24 +00:00
- npmci publish
2016-05-26 19:18:14 +00:00
only:
2016-05-29 19:04:44 +00:00
- tags
2016-05-26 19:18:14 +00:00
tags:
2016-05-30 05:05:17 +00:00
- docker
page:
stage: page
script:
- npmci test lts
- mkdir .public
- cp -r docs/ .public
- mv .public public
artifacts:
paths:
- public
only:
- master