We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5418e3 + 2e242a0 commit c5b2d68Copy full SHA for c5b2d68
1 file changed
.github/workflows/coverage.yaml
@@ -1,4 +1,4 @@
1
-name: Run Tests with Coverage
+name: Test Coverage
2
3
on:
4
pull_request:
@@ -13,14 +13,17 @@ jobs:
13
pull-requests: write
14
15
steps:
16
- - uses: actions/checkout@v4
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
- - uses: actions/setup-node@v4
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
with:
22
node-version: 20
23
cache: npm
24
- - run: npm ci
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
- name: Run tests with coverage
29
run: npx vitest run --coverage
@@ -32,7 +35,7 @@ jobs:
32
35
json-summary-path: coverage/coverage-summary.json
33
36
json-final-path: coverage/coverage-final.json
34
37
- - name: Upload coverage artifact
38
+ - name: Upload coverage report
39
if: always()
40
uses: actions/upload-artifact@v4
41
0 commit comments