From 94c695bc168f506c3e12cb27a77a4e46e5ce5e51 Mon Sep 17 00:00:00 2001
From: Egor Zalenski <egor.zalenski@softeq.com>
Date: Tue, 29 Oct 2024 18:32:05 +0100
Subject: [PATCH] test

---
 .github/workflows/build.yml           |  2 +-
 .github/workflows/release-prod.yml    |  2 +-
 .github/workflows/release-stage.yml   |  2 +-
 .github/workflows/tests-e2e-linux.yml | 14 +++-----------
 .github/workflows/tests.yml           |  4 ++--
 5 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6dad42b2..44fc7e66 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,4 +1,4 @@
-name: Build
+name: 🚀 Build
 
 on:
   # Manual trigger build
diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml
index ab8c08f7..1a974588 100644
--- a/.github/workflows/release-prod.yml
+++ b/.github/workflows/release-prod.yml
@@ -1,4 +1,4 @@
-name: Release (prod)
+name: ❗ Release (prod)
 
 on:
   push:
diff --git a/.github/workflows/release-stage.yml b/.github/workflows/release-stage.yml
index 28eaf1bd..8ea9f031 100644
--- a/.github/workflows/release-stage.yml
+++ b/.github/workflows/release-stage.yml
@@ -1,4 +1,4 @@
-name: Release (stage)
+name: 📖 Release (stage)
 
 on:
   push:
diff --git a/.github/workflows/tests-e2e-linux.yml b/.github/workflows/tests-e2e-linux.yml
index dd960987..aa521123 100644
--- a/.github/workflows/tests-e2e-linux.yml
+++ b/.github/workflows/tests-e2e-linux.yml
@@ -26,8 +26,8 @@ jobs:
       fail-fast: false
       matrix:
         # Number of threads to run tests
-        parallel: [0, 1, 2, 3]
-        # parallel: [0]
+        # parallel: [0, 1, 2, 3]
+        parallel: [0]
 
     steps:
     - uses: actions/checkout@v4
@@ -56,14 +56,6 @@ jobs:
         name: linux-build
         path: ./release
 
-
-    # - run: node -v
-
-    # - name: Install dependencies for root package.js
-    #   run: yarn install --frozen-lockfile
-    # - run: yarn download:backend
-    # - run: yarn package:prod
-
     - name: Setup e2e tests
       working-directory: ./tests/e2e
       run: |
@@ -75,7 +67,7 @@ jobs:
     - name: Generate short list of the test files
       working-directory: ./tests/e2e
       run: |
-        testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
+        testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 1 == ${{ matrix.parallel }}")
         echo $testFiles
 
         # Multi-Line value
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 330a20d5..0555913e 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -1,4 +1,4 @@
-name: Tests
+name: ✅ Tests
 
 on:
   push:
@@ -32,7 +32,7 @@ jobs:
     # needs: e2e-approve
     secrets: inherit
 
-  e2e-linux-tests:
+  e2e-linux-tests-test:
     needs: build-linux
     uses: ./.github/workflows/tests-e2e-linux.yml
     secrets: inherit