Sélectionner une révision Git
Makefile.in
.gitlab-ci.yml 548 o
stages:
- build
- test
# This folder is cached between builds
# https://docs.gitlab.com/ee/ci/yaml/index.html#cache
cache:
paths:
- node_modules/
.pnpm:
image: node:20
before_script:
- corepack enable
- pnpm install
# Check for dependencies issues
- pnpm install --resolution-only --no-frozen-lockfile
build:
stage: build
extends: .pnpm
script:
- pnpm build
lint:
stage: test
extends: .pnpm
script:
- pnpm lint
check:
stage: test
extends: .pnpm
script:
- pnpm build
- pnpm check