smartssh/.gitlab-ci.yml

46 lines
533 B
YAML
Raw Permalink Normal View History

image: hosttoday/ht-docker-node:latest
stages:
- test
- release
- page
testLTS:
stage: test
script:
- npmci test lts
tags:
- docker
testSTABLE:
stage: test
script:
- npmci test stable
tags:
- docker
2016-06-01 00:35:12 +00:00
testLEGACY:
stage: test
script:
- npmci test 0
allow_failure: true
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
pages:
stage: page
script:
2016-05-31 22:59:02 +00:00
- mkdir public
2016-05-31 17:50:43 +00:00
- npmci npmpage
artifacts:
paths:
- public
only:
2016-05-31 17:50:43 +00:00
- tags