Skip to content

Commit 08929c1

Browse files
authored
Merge pull request #2 from AvivAbachi/feat--add-jobs-name
feat: add jobs name
2 parents a655c7a + 488a9c3 commit 08929c1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ on:
66

77
permissions:
88
contents: read # for checkout and git clone
9-
actions: write # for uploading artifacts if any (optional here)
10-
workflows: write # if triggering other workflows (not used here, optional)
11-
pull-requests: write # only if modifying PRs (not used here)
9+
# actions: write # for uploading artifacts if any (optional here)
10+
# workflows: write # if triggering other workflows (not used here, optional)
11+
# pull-requests: write # only if modifying PRs (not used here)
1212

1313
jobs:
1414
ci:
15+
name: CI
1516
runs-on: ubuntu-latest
1617
steps:
1718
- uses: actions/checkout@v4

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ permissions:
1212

1313
jobs:
1414
main:
15+
name: Pull Request
1516
runs-on: ubuntu-latest
1617
steps:
1718
- uses: amannn/action-semantic-pull-request@v5

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
jobs:
1515
lint-test:
16+
name: Lint Test
1617
runs-on: ubuntu-latest
1718
steps:
1819
- uses: actions/checkout@v4
@@ -27,6 +28,7 @@ jobs:
2728
run: npm run test:lint
2829

2930
mocha-test:
31+
name: Mocha Test
3032
runs-on: ubuntu-latest
3133
steps:
3234
- uses: actions/checkout@v4
@@ -52,6 +54,7 @@ jobs:
5254
reporter: mocha-json
5355

5456
coverage-test:
57+
name: Test Whit Coverage
5558
runs-on: ubuntu-latest
5659
steps:
5760
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)