Skip to content
Snippets Groups Projects
This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 324 B
stages:
  - validate
  - build
  - deploy

.pnpm:
  image: weseklund/node16-alpine-pnpm:latest
  cache: &cache
    key: '$CI_COMMIT_REF_SLUG'
    paths:
      - .pnpm-store
    policy: pull-push
  before_script:
    - pnpm config set store-dir .pnpm-store
    - pnpm install
  needs: []

include:
  - local: '.gitlab/*.yml'