From 6fd3dec7494ca018f805d444abac1357a3571e6e Mon Sep 17 00:00:00 2001 From: perf3ct Date: Sat, 2 Aug 2025 22:53:14 +0000 Subject: [PATCH] fix(tests): fix the name of the unit_tests only step, and make the name of the steps be prettier in Actions UI --- .github/workflows/test-e2e.yml | 1 + .github/workflows/test-integration.yml | 2 ++ .github/workflows/test-unit.yml | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 4f8b045..56673e4 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -15,6 +15,7 @@ env: jobs: e2e-tests: + name: E2E Tests runs-on: ubuntu-latest services: diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 4ba1c1c..48b8f12 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -16,6 +16,7 @@ env: jobs: integration-tests: + name: Integration Tests runs-on: ubuntu-latest services: @@ -171,6 +172,7 @@ jobs: fi frontend-integration-tests: + name: Frontend Integration Tests runs-on: ubuntu-latest defaults: diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 2529d46..cce4fb9 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -15,6 +15,7 @@ env: jobs: rust-unit-tests: + name: Rust unit tests runs-on: ubuntu-latest steps: @@ -69,13 +70,14 @@ jobs: env: RUST_BACKTRACE: 1 - - name: Run Rust unit tests - tests only + - name: Run Rust unit tests - unit_tests only run: | cargo test --tests unit_tests --no-fail-fast env: RUST_BACKTRACE: 1 frontend-unit-tests: + name: Frontend unit tests runs-on: ubuntu-latest defaults: