From b3572dee2b9567c0ab85484e8535cc021f7b4f3b Mon Sep 17 00:00:00 2001
From: Yossi Saadi <yossisa@monday.com>
Date: Mon, 12 Feb 2024 20:32:20 +0200
Subject: [PATCH] ci(ci): name the job run with a readable, cleaner one

---
 .github/workflows/ci.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d1b4a9c8c4..d027343414 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,13 +20,15 @@ jobs:
             command: "build"
           - name: "Build Storybook"
             command: "build-storybook"
+    name: ${{ matrix.name }}
     steps:
       - uses: actions/checkout@v4
         with:
           fetch-depth: 0
-      - uses: ./.github/actions/setup
+      - name: Run Setup
+        uses: ./.github/actions/setup
         with:
           npm_token: ${{secrets.npm_token}}
-      - name: ${{matrix.name}}
+      - name: Run ${{matrix.name}}
         shell: bash
         run: yarn lerna run ${{matrix.command}} --since=origin/master