tscoverage/.gitlab-ci.yml

28 lines
316 B
YAML

image: hosttoday/ht-docker-node
stages:
- test
- release
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