Skip to content

Commit b23d97c

Browse files
committed
chore: modify step name
1 parent d2144c3 commit b23d97c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
node-version: [14.x, 16.x]
1717
steps:
18-
- name: πŸ“š Check out Git repository
18+
- name: πŸ“š Checkout git repository
1919
uses: actions/checkout@v2
2020
- name: 🟒 Setup Node.js ${{matrix.node-version}}
2121
uses: actions/setup-node@v1

β€Ž.github/workflows/coverage.ymlβ€Ž

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: πŸ“š Check out Git repository
14+
- name: πŸ“š Checkout git repository
1515
uses: actions/checkout@v2
1616
- name: 🟒 Setup Node.js
1717
uses: actions/setup-node@v1
@@ -20,9 +20,10 @@ jobs:
2020
- name: πŸ›  Install dependencies
2121
run: npm install
2222
- name: βš™οΈ Create coverage
23+
with:
24+
COVERALLS_REPO_TOKEN: ${{secrets.COVERALLS_REPO_TOKEN}}
2325
run: npm run test:coveralls
24-
- name: Coveralls
26+
- name: πŸ“¨ Send report to Coveralls
2527
uses: coverallsapp/github-action@master
2628
with:
27-
COVERALLS_REPO_TOKEN: ${{secrets.COVERALLS_REPO_TOKEN}}
2829
github-token: ${{secrets.GITHUB_TOKEN}}

β€Ž.github/workflows/publish.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: 'πŸš€ Publish'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: πŸ“š Check out Git repository
14+
- name: πŸ“š Checkout git repository
1515
uses: actions/checkout@v2
1616
- name: 🟒 Setup Node.js
1717
uses: actions/setup-node@v1

0 commit comments

Comments
Β (0)