-
Marco Marinello authored
Signed-off-by:
Marco Marinello <me@marcomarinello.it>
Marco Marinello authoredSigned-off-by:
Marco Marinello <me@marcomarinello.it>
.gitlab-ci.yml 384 B
image: node:latest
stages:
- build
- docs
build:
stage: build
script:
- npm install --force --global yarn
- yarn install
- yarn test
- yarn build
pages:
stage: docs
script:
- npm install --force --global yarn
- yarn install
- npx styleguidist build
- mv styleguide public
artifacts:
paths:
- public
only:
- master