Skip to content

Commit 74e8146

Browse files
committed
several tweaks
1 parent 771dd4b commit 74e8146

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: npm ci --ignore-scripts --no-audit --no-fund
2525
- name: Install Playwright Browsers
26-
run: npx playwright install chromium
26+
run: npx playwright install chromium --only-shell
2727
- run: npm test -- --forbid-only
2828

2929
check-ts:
@@ -40,7 +40,7 @@ jobs:
4040
- run: npm run check
4141

4242
lint-code:
43-
name: Check types
43+
name: Lint code (oxlint)
4444
runs-on: ubuntu-latest
4545
steps:
4646
- uses: actions/checkout@v5
@@ -53,7 +53,7 @@ jobs:
5353
- run: npm run lint
5454

5555
lint-package:
56-
name: Lint package
56+
name: Lint package (publint)
5757
runs-on: ubuntu-latest
5858
steps:
5959
- name: Checkout code

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ export function calculate_coverage(coverage: Coverage[], parse_html: Parser): Co
120120
total_lines: total_file_lines,
121121
covered_lines: file_lines_covered,
122122
uncovered_lines: total_file_lines - file_lines_covered,
123+
// TODO: { is_covered: boolean, start_offset: number, start_line: number, end_offset: number, end_line: number }[]
123124
}
124125
})
125126

0 commit comments

Comments
 (0)