From 017fe4ac77141d7e45f5d2c690c722fe50358720 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 27 Apr 2025 17:31:32 -0300 Subject: [PATCH] fix(gb-infra): Improve readability by adding a name to the test step in Node workflow --- .forgejo/workflows/node.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/node.yaml b/.forgejo/workflows/node.yaml index 5b77929..a358379 100644 --- a/.forgejo/workflows/node.yaml +++ b/.forgejo/workflows/node.yaml @@ -17,11 +17,12 @@ jobs: - uses: actions/checkout@v4 - name: Install Rust - - uses: wackbyte/rust-toolchain@trunk + uses: wackbyte/rust-toolchain@trunk with: toolchain: stable - - run: cargo test --all-features + - name: Run tests + run: cargo test --all-features - name: Cache cargo registry uses: actions/cache@v3