DevsTool

100% Local

GitLab CI Generator

Build pipeline YAML visually — download ready to commit

Stages

Cache

Jobs

Job 1
Job 2

.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