Skip to content

Commit 53da546

Browse files
committed
ci: add descriptive job names to github workflow
This commit adds descriptive names to the build and release jobs in the GitHub Actions workflow. The new job names 'Build & Test' and 'Create Release' provide better visibility and understanding of the jobs' purposes in the workflow.
1 parent fac6b7f commit 53da546

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
threshold: 70
2828

2929
build: # Job named 'build'
30+
name: Build & Test
3031
runs-on: ubuntu-latest # The type of machine to run the job on.
3132

3233
needs: [guard]
@@ -78,6 +79,7 @@ jobs:
7879
run: pnpm run test
7980

8081
release:
82+
name: Create Release
8183
# Specify the type of the runner the job will run on
8284
runs-on: ubuntu-latest
8385

0 commit comments

Comments
 (0)