fix(tests): fix the name of the unit_tests only step, and make the name of the steps be prettier in Actions UI

This commit is contained in:
perf3ct 2025-08-02 22:53:14 +00:00
parent 346ec6f18a
commit 6fd3dec749
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
3 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,7 @@ env:
jobs:
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
services:

View File

@ -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:

View File

@ -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: