Skip to content

Commit 53b47f4

Browse files
committedNov 5, 2020
Add names to the jobs
1 parent bf43988 commit 53b47f4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
 

‎.github/workflows/main.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ on:
1313
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1414
jobs:
1515
lint:
16+
name: Lint
17+
1618
runs-on: ubuntu-latest
1719

1820
steps:
@@ -27,6 +29,8 @@ jobs:
2729
- run: npm run lint
2830

2931
test:
32+
name: Integration tests
33+
3034
runs-on: ubuntu-latest
3135

3236
strategy:
@@ -42,10 +46,11 @@ jobs:
4246

4347
- run: npm ci
4448

45-
- name: Run the integration tests
46-
run: npm test
49+
- run: npm test
4750

4851
test-cache:
52+
name: e2e cache tests
53+
4954
runs-on: ubuntu-latest
5055

5156
strategy:
@@ -71,6 +76,8 @@ jobs:
7176
run: npm run test-cache
7277

7378
test-middleware:
79+
name: Middleware tests
80+
7481
runs-on: ubuntu-latest
7582

7683
strategy:

0 commit comments

Comments
 (0)
Please sign in to comment.