43 lines
557 B
YAML
43 lines
557 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
|
||
|
|
||
|
release:
|
||
|
stage: release
|
||
|
script:
|
||
|
- npmci publish
|
||
|
only:
|
||
|
- tags
|
||
|
tags:
|
||
|
- docker
|
||
|
|
||
|
pages:
|
||
|
stage: page
|
||
|
script:
|
||
|
- npmci test lts
|
||
|
- mkdir .public
|
||
|
- cp -r test/assets/docs/ .public
|
||
|
- cp -r test/assets/coverage/ .public
|
||
|
- mv .public public
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|
||
|
only:
|
||
|
- master
|