Build pipeline YAML visually — download ready to commit
Stages
Cache
Jobs
.gitlab-ci.yml
image: node:20-alpine stages: - build - test - deploy cache: key: "$CI_COMMIT_REF_SLUG" paths: - node_modules/ build: stage: build script: - npm ci - npm run build artifacts: paths: - dist/ test: stage: test script: - npm test