forked from wechorg/jest-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (33 loc) · 876 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
34
name: "Jest Annotations & Coverages with Summary"
author: "sandeepmeduru"
description: "Jest action adding checks"
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"
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"