From 0357797612af9bc27f5f6f3e6e0dccda91bb722f Mon Sep 17 00:00:00 2001 From: Paul Rastoin <45004772+prastoin@users.noreply.github.com> Date: Fri, 17 Jan 2025 11:17:39 +0100 Subject: [PATCH] [CI] Add `performance` to merge coverage matrix strategy job (#9708) # Introduction It seems like I've just oversight adding it back while debugging # Centralization Please note that we only have access to the following context within a job matrix properties: ``` Available expression contexts: github, inputs, vars, needs ``` We could centralize the `storybook_scope` as a job `outputs` in order to avoid this to re-occurs. --- .github/workflows/ci-front.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-front.yaml b/.github/workflows/ci-front.yaml index 94d7fd71d..73ae1e632 100644 --- a/.github/workflows/ci-front.yaml +++ b/.github/workflows/ci-front.yaml @@ -102,7 +102,7 @@ jobs: PATH_TO_COVERAGE: packages/twenty-front/coverage/storybook strategy: matrix: - storybook_scope: [modules, pages] + storybook_scope: [modules, pages, performance] steps: - uses: actions/checkout@v4 with: