forked from mattallty/jest-github-action
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (25 loc) · 696 Bytes
/
Copy pathaction.yml
File metadata and controls
26 lines (25 loc) · 696 Bytes
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
name: "Jest GitHub Action"
description: "Jest action adding checks and annotations to your pull requests and comment them with code coverage results."
branding:
icon: "check"
color: "green"
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"
runs:
using: "node20"
main: "dist/index.js"