Skip to content

Commit 144de1e

Browse files
committed
Improves workflow readability with job naming
Updates workflow and job names to use clear, descriptive labels and emojis for easier identification and improved visual clarity in GitHub Actions UI.
1 parent c36baed commit 144de1e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish to npm
1+
name: "📦 NPM Release"
22

33
on:
44
push:
@@ -12,6 +12,7 @@ permissions:
1212

1313
jobs:
1414
check-version:
15+
name: "🔍 Check NPM Version"
1516
runs-on: ubuntu-latest
1617
outputs:
1718
should_publish: ${{ steps.check.outputs.should_publish }}
@@ -37,6 +38,7 @@ jobs:
3738
fi
3839
3940
publish:
41+
name: "📦 Publish to NPM"
4042
needs: check-version
4143
if: needs.check-version.outputs.should_publish == 'true'
4244
runs-on: ubuntu-latest
@@ -59,6 +61,7 @@ jobs:
5961
run: npm publish --access public
6062

6163
skip-notice:
64+
name: "⏭️ Skip Publish (Version Exists)"
6265
needs: check-version
6366
if: needs.check-version.outputs.should_publish == 'false'
6467
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)