Skip to content

Commit e2d070b

Browse files
Update test workflow to run on all PRs
This change ensures that tests run for all PRs created, not just those targeting the main branch. The wildcard pattern '**' matches all branches, improving test coverage across the repository.
1 parent cc565a3 commit e2d070b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7-
branches: ["*"]
7+
branches: ["**"]
88
workflow_dispatch:
99

1010
jobs:
@@ -44,3 +44,4 @@ jobs:
4444
name: test-failure
4545
path: packages/components/storybook-static
4646
retention-days: 2
47+

0 commit comments

Comments
 (0)