46 lines
533 B
YAML
46 lines
533 B
YAML
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
|
|
|
|
testLEGACY:
|
|
stage: test
|
|
script:
|
|
- npmci test 0
|
|
allow_failure: true
|
|
|
|
release:
|
|
stage: release
|
|
script:
|
|
- npmci publish
|
|
only:
|
|
- tags
|
|
tags:
|
|
- docker
|
|
|
|
pages:
|
|
stage: page
|
|
script:
|
|
- mkdir public
|
|
- npmci npmpage
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- tags |