# general
12
SK
Sarah Kim9:15 AM

Good morning team! The new CI pipeline is live. Build times dropped from 8 min to under 3 min.

🎉 5🚀 3
MR
Mike Rodriguez9:18 AM

Incredible! How did you manage that?

SK
Sarah Kim9:20 AM

Switched to incremental builds + parallel test sharding. Here's the config:

# turbo.json
{
  "pipeline": {
    "build": {
      "dependsOn": ["^build"],
      "outputs": ["dist/**"]
    },
    "test": {
      "dependsOn": ["build"],
      "outputs": ["coverage/**"]
    }
  }
}
👀 2
LM
Lisa Monroe9:32 AM

The design system updates are ready for review: https://figma.com/file/abc123

👍 4
JC
James Chen9:45 AM

Has anyone tested the new auth flow on mobile? I'm seeing some weird behavior with the SSO redirect.

AP
Ana Petrova9:48 AM

@James Chen Yes, reproduced on iOS Safari. Looks like the callback URL is missing the port in dev mode. Quick fix:

const callbackUrl = process.env.NODE_ENV === 'development'
  ? `http://localhost:${port}/auth/callback`
  : `${process.env.NEXT_PUBLIC_URL}/auth/callback`;
🙏 1
MR
Mike Rodriguez10:02 AM

Reminder: Sprint retro at 2pm today. Please add your items to the board before then.

6
LM
Lisa Monroe10:15 AM

Just published the updated component library docs. Check the new color token page!

🎨 3💯 2
JC
James Chen10:30 AM

Fixed the SSO issue. PR is up: #1247. Ana, could you review when you get a chance?

🔥 2
SK
Sarah Kim10:45 AM

Team standup notes are in the wiki. Big milestone: we hit 99.9% uptime this quarter!

🎉 8🏆 4