From 9b937e2736008907436c3f6195c214fa9372ad6e Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 23 May 2025 12:02:49 +0000 Subject: [PATCH] Refactor CI workflow step names for clarity by adding descriptive titles for dependency installation and checks. --- .gitea/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 352379b..e06db1a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,5 +16,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 22 - - run: npm ci - - run: npm run check + - name: Install dependencies + run: npm ci + - name: Run checks + run: npm run check