From e2d070bc0a37a8558552c639749b204429cc2166 Mon Sep 17 00:00:00 2001 From: "codegen-sh[bot]" <131295404+codegen-sh[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 05:49:50 +0000 Subject: [PATCH] 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. --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c92f7a03..f7b11be4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: push: branches: [main] pull_request: - branches: ["*"] + branches: ["**"] workflow_dispatch: jobs: @@ -44,3 +44,4 @@ jobs: name: test-failure path: packages/components/storybook-static retention-days: 2 +