Skip to content
Snippets Groups Projects
.gitlab-ci.yml 225 B
image: node:20.8.0

stages:
  - build

cache:
  paths:
    - node_modules

pages:
  stage: build
  script:
    - npm ci
    - npm run docs:build
  artifacts:
    paths:
      - public
    expire_in: 1 week
  only:
    - main