Skip to content

Commit c93662c

Browse files
author
Sarhan
committed
chore: add a more explanatory description to CI jobs
1 parent b685d55 commit c93662c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ jobs:
1010
strategy:
1111
matrix:
1212
node-version: [14, 12, 10, 8, 6]
13+
name: Run tests on Node.js ${{ matrix.node-version }}
1314
steps:
1415
- name: Setup Node.js ${{ matrix.node-version }}
1516
uses: actions/setup-node@v2-beta
1617
with:
1718
node-version: ${{ matrix.node-version }}
1819
check-latest: true
19-
- name: Checkout Repository
20+
- name: Checkout repository
2021
uses: actions/checkout@v2
21-
- name: Install Dependencies
22+
- name: Install dependencies
2223
run: npm install
23-
- name: Run Tests
24+
- name: Run tests
2425
run: npm test
2526
- if: matrix.node-version == 14
2627
name: Generate coverage file

0 commit comments

Comments
 (0)