Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: lint/test

on:
push:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ permissions:
pull-requests: write

jobs:
# Re-run lint + tests at merge time; the release is gated on them passing.
ci:
if: github.event.pull_request.merged == true
uses: ./.github/workflows/ci.yml
Expand Down
5 changes: 5 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ export default defineConfig({
],
test: {
name: "storybook",
// Browser-mode story tests flake under CI's constrained parallelism
// (transient dynamic-import / iframe races). Run serially + retry there;
// keep the fast parallel path locally.
fileParallelism: !process.env.CI,
retry: process.env.CI ? 2 : 0,
browser: {
enabled: true,
headless: true,
Expand Down