npmci/.gitlab-ci.yml

71 lines
1009 B
YAML

image: hosttoday/ht-docker-node:stable
stages:
- test
- release
- trigger
- page
before_script:
- npm uninstall -g npmci
- npm install -g npmci
testLTS:
stage: test
script:
- npmci install lts
- npmci command npm install -g npmts
- npmci test lts
tags:
- docker
testSTABLE:
stage: test
script:
- npmci install stable
- npmci command npm install -g npmts
- npmci test stable
tags:
- docker
testLEGACY:
stage: test
script:
- npmci install legacy
- npmci command npm install -g npmts
- npmci test legacy
tags:
- docker
allow_failure: true
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
trigger:
stage: trigger
script:
- npmci trigger
only:
- tags
tags:
- docker
pages:
image: hosttoday/ht-docker-node:npmpage
stage: page
script:
- npmci command npmpage --host gitlab
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public