# Deploy pipeline

Subtle web animation sketch from [https://mighil.com/animations](https://mighil.com/animations).

- **Live demo:** https://mighil.com/animations/deploy-pipeline
- **Standalone HTML:** https://mighil.com/animations/deploy-pipeline?download=1
- **This file:** https://mighil.com/animations/deploy-pipeline/deploy-pipeline.md
- **Technique:** `ci`

## What it does

Stages light up along the wire. Replay flips success and failure.

## Instructions for AI / coding agents

Implement this micro-interaction in the user's stack (vanilla HTML, React, Vue, Svelte, etc.).

1. Use the **HTML** as the DOM structure (adapt JSX/templates as needed; keep class names and ids).
2. Include the **Theme** CSS (or map the same variables into the host design system). It switches light/dark with `prefers-color-scheme`.
3. Apply the **CSS** as-is when possible. It uses `var(--text-color)`, `var(--heading-color)`, `var(--background-color)`, etc. from the theme so both modes work.
4. Run the **JavaScript** after the markup mounts. Prefer `DOMContentLoaded` or a framework `useEffect` / `onMount`.
5. Keep motion respectful of `prefers-reduced-motion` if the snippet already checks it.
6. Do not depend on mighil.com runtime or fonts. Theme variables are enough for color.
7. If porting to a component, expose the interactive root via a ref and preserve accessibility attributes (`aria-*`, `role`, `button` types).

## Theme (auto light / dark)

```css
/* Auto light / dark — follows prefers-color-scheme */
:root{
  color-scheme: light dark;
  --text-color: hsl(0, 0%, 18%);
  --heading-color: hsl(0, 0%, 18%);
  --background-color: hsl(0, 0%, 99%);
  --bg-color: hsl(0, 0%, 99%);
  --link-color: hsl(0, 0%, 18%);
  --visited-color: hsl(0, 0%, 18%);
  --blockquote-color: hsl(0, 0%, 18%);
  --code-bg-color: hsl(0, 0%, 95%);
  --code-color: hsl(0, 0%, 18%);
  --sub-color: hsl(0, 0%, 29%);
}
@media (prefers-color-scheme: dark){
:root{
  --text-color: hsl(35, 25%, 85%);
  --heading-color: hsl(35.2, 32.6%, 82.5%);
  --background-color: hsl(60, 2.2%, 8.8%);
  --bg-color: hsl(60, 2.2%, 8.8%);
  --link-color: hsl(34.7, 55.3%, 79.8%);
  --visited-color: hsla(34.7, 55.3%, 79.8%, 0.85);
  --blockquote-color: hsl(35, 30%, 75%);
  --code-bg-color: hsl(30, 5%, 7.8%);
  --code-color: limegreen;
  --sub-color: hsla(34.7, 24.7%, 84.9%, 0.78);
}
}
```

## HTML

```html
<div class="deploy" id="deploy" data-step="0">
        <div class="deploy-steps">
          <div class="deploy-node" data-dn="0"><i></i>Queued</div>
          <div class="deploy-wire"><b></b></div>
          <div class="deploy-node" data-dn="1"><i></i>Build</div>
          <div class="deploy-wire"><b></b></div>
          <div class="deploy-node" data-dn="2"><i></i>Live</div>
        </div>
        <div class="deploy-label" id="deploy-label">Waiting to start…</div>
      </div>
```

## CSS

```css
@keyframes deploy-fill{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

.deploy{
  width:min(100%,340px);display:flex;flex-direction:column;gap:12px;
}

.deploy-steps{display:flex;align-items:center;gap:0;width:100%}

.deploy-node{
  display:flex;flex-direction:column;align-items:center;gap:6px;flex:0 0 auto;width:56px;
  font-size:.68rem;color:color-mix(in srgb,var(--text-color) 45%,transparent);
  transition:color .15s linear;
}

.deploy-node i{
  width:12px;height:12px;border-radius:50%;display:block;
  border:1.5px solid color-mix(in srgb,var(--text-color) 22%,transparent);
  background:transparent;box-sizing:border-box;
  transition:background .12s linear,border-color .12s linear,transform .18s ease-out;
}

.deploy-wire{
  flex:1;height:1.5px;background:color-mix(in srgb,var(--text-color) 12%,transparent);position:relative;overflow:hidden;margin-bottom:18px;
}

.deploy-wire > b{
  position:absolute;inset:0;width:100%;transform:scaleX(0);transform-origin:left;
  background:color-mix(in srgb,var(--text-color) 45%,transparent);
}

.deploy-node.is-done,.deploy-node.is-live{color:inherit}

.deploy-node.is-done i,.deploy-node.is-live i{
  background:color-mix(in srgb,var(--text-color) 55%,transparent);
  border-color:transparent;transform:scale(1);
}

.deploy-node[data-dn="1"].is-done{
  color:color-mix(in srgb,#c90 80%,var(--text-color));
}

.deploy-node[data-dn="1"].is-done i{background:#c90;border-color:transparent}

.deploy-node.is-live{color:color-mix(in srgb,#2a8 80%,var(--text-color))}

.deploy-node.is-live i{background:color-mix(in srgb,#2a8 75%,transparent)}

.deploy-node.is-fail{
  color:color-mix(in srgb,#c44 85%,var(--text-color));
}

.deploy-node.is-fail i{
  background:#c44;border-color:transparent;
}

.deploy-node.is-busy i{
  border-color:color-mix(in srgb,var(--text-color) 50%,transparent);
}

.deploy[data-step="1"] .deploy-wire:nth-child(2) > b{
  background:#c90;
  animation:deploy-fill 1.6s linear forwards;
}

.deploy[data-step="2"] .deploy-wire:nth-child(2) > b,
.deploy[data-step="3"] .deploy-wire:nth-child(2) > b{transform:scaleX(1);background:#c90}

.deploy[data-step="2"] .deploy-wire:nth-child(4) > b{
  background:color-mix(in srgb,#2a8 85%,transparent);
  animation:deploy-fill .9s linear forwards;
}

.deploy[data-step="3"] .deploy-wire:nth-child(4) > b{
  transform:scaleX(1);
  background:color-mix(in srgb,#2a8 85%,transparent);
}

.deploy[data-step="fail"] .deploy-wire:nth-child(2) > b{
  transform:scaleX(1);background:#c44;animation:none;
}

.deploy-label{
  font-size:.82rem;font-weight:500;min-height:1.2em;
  transition:opacity .12s linear;
}

.deploy-label.is-tick{opacity:.35}

@media (prefers-reduced-motion: reduce){
  .grow-link::after,.wipe,.wipe .b,.shuffle .card,.odo-digit > b,.flap-reel,.step-node,.step-line > i,
  .switch,.switch::after,.copy-btn .c-idle,.copy-btn .c-done,.field label,.tip-bubble,.chip,.like-btn svg,
  .disc-btn svg,.disc-panel,.snack,.save-btn,.ux-box,.seg-pill,.soft-tabs-ink,.list-actions,.success-banner,.search-clear,.pin-btn svg,.submit-ring rect,
  .hold-btn .hold-fill,.toast,.menu-btn .menu-line,.stars button,.conn,.retry-btn,.sort-item,.mute-btn .wave,.mute-btn .x-line,.wizard-dots span,.cart-badge,.range-bubble,
  .filter-list li,.upload-bar > i,.quota-track > i,.quota-tip,.splitbtn-toggle svg,.splitbtn-menu,.presence-dot,
  .draft-banner,.tag-chip,.empty-state,.empty-item,.deadline,.deadline-clock,.deadline-track > i,.edge-fade-mask,.dirty-bar,.seen-ticks path,.nudge-field,.stack-card,
  .blur-line,.xface span,.magnet-chip,.confirm-btn,.confirm-btn span,.offline-banner,.sort-flip-btn svg,.sort-flip-list li,.react-fan,.react-fan button,.sticky-cta,
  .pw-toggle .pw-eye,.pw-toggle .pw-slash,.otp input,.exp-search,.exp-search input,.ok-field input,.ok-field .ok-check,.unread-dot,.unread-check,.unread-row,.sync-label,.sync-btn .sync-arrows,.sync-btn .sync-check,
  .inline-edit .ie-title,.inline-edit .ie-rename,.inline-edit .ie-panel,.inline-edit .ie-input,.inline-edit .ie-bar,
  .ghost-wrap .ghost-hint,.ghost-wrap .ghost-key,.cmd-palette,.cmd-palette li,.cmd-stage::before,.crumb-mid,.crumb-more,.diff-add,.diff-add > .diff-add-inner,.slot > i,.zoom-thumb,.zoom-full,.zoom-caption,
  .bulk-bar,.bulk-check svg,.bulk-row,.env-switch .env-ink,.env-switch button,.invite-btn .invite-idle,.invite-btn .invite-done,.flag-row,.flag-sw,.flag-sw::after,.deploy-node,.deploy-node i,.deploy-wire > b,.ws-ink,.ws-item .ws-check,.thread,.thread-body,.thread-resolve svg,
  .unfurl-card,.unfurl-thumb,.seat,.form-prog-bar > i,.form-prog-field,.form-prog-field svg,.mention b,.glyph-tile path,.glyph-tile line,.glyph-tile circle{transition:none!important}

  .deploy[data-step="1"] .deploy-wire:nth-child(2) > b,
  .deploy[data-step="2"] .deploy-wire:nth-child(2) > b,
  .deploy[data-step="3"] .deploy-wire:nth-child(2) > b,
  .deploy[data-step="fail"] .deploy-wire:nth-child(2) > b,
  .deploy[data-step="2"] .deploy-wire:nth-child(4) > b,
  .deploy[data-step="3"] .deploy-wire:nth-child(4) > b{transform:scaleX(1);animation:none}

  .deploy-label.is-tick{opacity:1}
}
```

## JavaScript

```js
// Deploy pipeline
  const deploy = document.getElementById('deploy');
  const deployLabel = document.getElementById('deploy-label');
  let deployTimers = [];
  let deployFailNext = false; // first run succeeds; Replay alternates
  function clearDeployTimers() {
    deployTimers.forEach(clearTimeout);
    deployTimers = [];
  }
  function tickDeployLabel(text) {
    if (!deployLabel) return;
    if (reduce) {
      deployLabel.textContent = text;
      return;
    }
    deployLabel.classList.add('is-tick');
    deployTimers.push(setTimeout(() => {
      deployLabel.textContent = text;
      deployLabel.classList.remove('is-tick');
    }, 90));
  }
  function setDeployStep(step) {
    if (!deploy) return;
    deploy.setAttribute('data-step', String(step));
    deploy.querySelectorAll('.deploy-node').forEach((node) => {
      const i = Number(node.getAttribute('data-dn'));
      node.classList.remove('is-done', 'is-busy', 'is-live', 'is-fail');
      if (step === 'fail') {
        if (i === 0) node.classList.add('is-done');
        else if (i === 1) node.classList.add('is-fail');
        return;
      }
      const n = Number(step);
      if (n >= 3) {
        if (i === 2) node.classList.add('is-live');
        else node.classList.add('is-done');
      } else if (i < n) {
        node.classList.add('is-done');
      } else if (i === n) {
        node.classList.add('is-busy');
      }
    });
    if (step === 'fail') tickDeployLabel('Build failed');
    else if (step === 0 || step === '0') tickDeployLabel('Queued…');
    else if (step === 1 || step === '1') tickDeployLabel('Building image…');
    else if (step === 2 || step === '2') tickDeployLabel('Deploying…');
    else tickDeployLabel('Live on production');
  }
  function runDeploy() {
    if (!deploy) return;
    const willFail = deployFailNext;
    deployFailNext = !deployFailNext;
    clearDeployTimers();
    deploy.removeAttribute('data-step');
    deploy.querySelectorAll('.deploy-node').forEach((node) => {
      node.classList.remove('is-done', 'is-busy', 'is-live', 'is-fail');
    });
    deploy.querySelectorAll('.deploy-wire > b').forEach((bar) => {
      bar.style.animation = 'none';
      void bar.offsetWidth;
      bar.style.animation = '';
    });
    if (deployLabel) deployLabel.classList.remove('is-tick');
    setDeployStep(0);
    if (reduce) {
      setDeployStep(willFail ? 'fail' : 3);
      return;
    }
    deployTimers.push(setTimeout(() => setDeployStep(1), 700));
    if (willFail) {
      // queue → build crawl → fail at Build
      deployTimers.push(setTimeout(() => setDeployStep('fail'), 700 + 1700));
      return;
    }
    // queue → build → ship → live
    deployTimers.push(setTimeout(() => setDeployStep(2), 700 + 1700));
    deployTimers.push(setTimeout(() => setDeployStep(3), 700 + 1700 + 950));
  }
  runDeploy();

document.querySelectorAll('[data-act]').forEach((btn) => {
    btn.addEventListener('click', (e) => {
      e.stopPropagation();
      const act = btn.getAttribute('data-act');
      if (act === 'deploy') runDeploy();
    });
  });
```

---

_Source: https://mighil.com/animations/deploy-pipeline_
