generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 50
/
action.yml
29 lines (28 loc) · 774 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
name: "Jest Annotations & Coverage"
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"
required: false
default: "true"
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"