generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
33 lines (32 loc) · 994 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Jest Annotations & Coverage with Summary"
description: "Jest action adding checks and annotations to your pull requests and comment them with code coverage results."
branding:
icon: "check"
color: "blue"
inputs:
test-command:
description: "The test command to run"
required: false
default: "npm test"
working-directory:
description: "Subdirectory to run tests in"
required: false
default: ""
coverage-comment:
description: "Comment PRs with code coverage"https://github.com/Sczlog/jest-coverage/blob/main/action.yml
required: false
default: "true"
calc-summary:
description: "Calculate coverage summary, set to only will not comment file coverage"
required: false
default: "false"
changes-only:
description: "Only run tests on changed files (over base branch)"
required: false
default: "false"
check-name:
description: "Status check name"
required: true
runs:
using: "node12"
main: "dist/index.js"