diff options
author | Valentin Popov <valentin@popov.link> | 2025-05-23 15:02:49 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-05-23 15:02:49 +0300 |
commit | 9b937e2736008907436c3f6195c214fa9372ad6e (patch) | |
tree | 19f4cf1253d69864eb8533a09d564635edcbb77e | |
parent | 6d0f766671abff0cdc331ab7ede46a43a7f49c02 (diff) | |
download | popov.link-9b937e2736008907436c3f6195c214fa9372ad6e.tar.xz popov.link-9b937e2736008907436c3f6195c214fa9372ad6e.zip |
Refactor CI workflow step names for clarity by adding descriptive titles for dependency installation and checks.
-rw-r--r-- | .gitea/workflows/ci.yml | 6 |
1 files 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 |