We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf43988 commit 53b47f4Copy full SHA for 53b47f4
.github/workflows/main.yml
@@ -13,6 +13,8 @@ on:
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
jobs:
15
lint:
16
+ name: Lint
17
+
18
runs-on: ubuntu-latest
19
20
steps:
@@ -27,6 +29,8 @@ jobs:
27
29
- run: npm run lint
28
30
31
test:
32
+ name: Integration tests
33
34
35
36
strategy:
@@ -42,10 +46,11 @@ jobs:
42
46
43
47
- run: npm ci
44
48
45
- - name: Run the integration tests
- run: npm test
49
+ - run: npm test
50
51
test-cache:
52
+ name: e2e cache tests
53
54
55
56
@@ -71,6 +76,8 @@ jobs:
71
76
run: npm run test-cache
72
77
73
78
test-middleware:
79
+ name: Middleware tests
80
74
81
75
82
83
0 commit comments