Skip to content
Snippets Groups Projects
.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