gitlab-ci-best-practices

Installation
SKILL.md

GitLab CI - Best Practices

Optimize GitLab CI/CD pipelines for performance, reliability, and maintainability.

Pipeline Optimization

Use DAG with Needs

stages:
  - build
  - test
  - deploy

build:frontend:
  stage: build
  script: npm run build:frontend
Installs
27
GitHub Stars
166
First Seen
Jan 22, 2026
gitlab-ci-best-practices — thebushidocollective/han