File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 66
77permissions :
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
1313jobs :
1414 ci :
15+ name : CI
1516 runs-on : ubuntu-latest
1617 steps :
1718 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ permissions:
1212
1313jobs :
1414 main :
15+ name : Pull Request
1516 runs-on : ubuntu-latest
1617 steps :
1718 - uses : amannn/action-semantic-pull-request@v5
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ permissions:
1313
1414jobs :
1515 lint-test :
16+ name : Lint Test
1617 runs-on : ubuntu-latest
1718 steps :
1819 - uses : actions/checkout@v4
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
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
You can’t perform that action at this time.
0 commit comments