GitLab CI Pipelines
GitLab CI Pipelines
Section titled “GitLab CI Pipelines”Common pipeline topics and references:
Quick example (.gitlab-ci.yml)
Section titled “Quick example (.gitlab-ci.yml)”stages: [build]build: image: node:20 script: - npm ci --no-audit --no-fund - npm run build