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