-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75eeaf5
commit 7b9f422
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
const { join } = require("path"); | ||
const { name: actionName } = require("../package"); | ||
const git = require("./git"); | ||
const github = require("./github"); | ||
const linters = require("./linters"); | ||
const { getInput, log } = require("./utils/action"); | ||
const { getSummary } = require("./utils/lint-result"); | ||
|
||
const GIT_NAME = actionName; | ||
const GIT_EMAIL = `[email protected]`; | ||
const GIT_EMAIL = "[email protected]"; | ||
const GIT_NAME = "Lint Action"; | ||
|
||
// Abort action on unhandled promise rejections | ||
process.on("unhandledRejection", err => { | ||
|