Skip to content

Commit 44996f7

Browse files
committed
Clarifies workflow step names for NPM publish
Improves readability of the CI workflow by renaming steps and the workflow itself to better reflect their actions, making maintenance and troubleshooting easier.
1 parent 902cdc2 commit 44996f7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "📦 NPM Release"
1+
name: "Package Release to NPM"
22

33
on:
44
push:
@@ -54,8 +54,11 @@ jobs:
5454
- name: Update npm
5555
run: npm install -g npm@latest
5656

57-
- run: npm ci
58-
- run: npm run build
57+
- name: Install dependencies
58+
run: npm ci
59+
60+
- name: Build package
61+
run: npm run build
5962

6063
- name: Publish package
6164
run: npm publish --access public

0 commit comments

Comments
 (0)