Skip to content
Snippets Groups Projects
.gitlab-ci.yml 537 B
stages:
  - test
  - docs

test quasar:
  image: griefed/gitlab-ci-cd:2.0.6
  stage: test
  cache:
    paths:
      - node_modules/
  before_script:
    - npm install
    - rm -Rf dist
  script:
    - quasar build

pages:
  image: griefed/gitlab-ci-cd:2.0.6
  stage: docs
  cache:
    paths:
      - node_modules/
  before_script:
    - npm install
    - rm -Rf dist
  script:
    - quasar build
    - cp -Rf dist/spa/* public/
  rules:
    - if: '$CI_COMMIT_BRANCH == "main"'
  artifacts:
    paths:
      - public
    expire_in: 1 week