Good morning team! The new CI pipeline is live. Build times dropped from 8 min to under 3 min.
Incredible! How did you manage that?
Switched to incremental builds + parallel test sharding. Here's the config:
# turbo.json
{
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"]
}
}
}The design system updates are ready for review: https://figma.com/file/abc123
Has anyone tested the new auth flow on mobile? I'm seeing some weird behavior with the SSO redirect.
@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`;Reminder: Sprint retro at 2pm today. Please add your items to the board before then.
Just published the updated component library docs. Check the new color token page!
Fixed the SSO issue. PR is up: #1247. Ana, could you review when you get a chance?
Team standup notes are in the wiki. Big milestone: we hit 99.9% uptime this quarter!