-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
23 lines (21 loc) · 743 Bytes
/
action.yml
File metadata and controls
23 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Test Coverage Annotations"
description: Add file annotations to areas of code lacking test coverage
inputs:
access-token:
description: Github access token
default: ${{ github.token }}
coverage:
description: Path to the test coverage JSON report.
only-changed-files:
description: "Only annotate changed files in the current PR. (default: true)"
default: true
coverage-working-directory:
description: "The path of the directory that the coverage was generated in. i.e. In the coverage file, the prefix before the repo directory."
commit-sha:
description: "The commit sha to apply the annotations to."
branding:
icon: alert-triangle
color: purple
runs:
using: "node16"
main: "dist/index.js"