Skip to content

Commit

Permalink
TEST: eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aeisenberg committed Sep 11, 2024
1 parent 0d0f998 commit 9a8842b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/status-report.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions src/status-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,14 @@ export enum JobStatus {
ConfigErrorStatus = "JOB_STATUS_CONFIGURATION_ERROR",
}

export interface StatusReportBase {
/** Name of the action being executed. */
action_name: ActionName;
const unused = 0;

Check failure

Code scanning / ESLint

Disallow unused variables Error

'unused' is assigned a value but never used.

Check notice

Code scanning / CodeQL

Unused variable, import, function or class Note

Unused variable unused.

export interface StatusReportBase {

Check failure

Code scanning / ESLint

Delete ·· Error

Delete ··
/** Name of the action being executed.
*
*
*/

Check failure

Code scanning / ESLint

Insert · Error

Insert ·
action_name: ActionName

Check failure

Code scanning / ESLint

Insert ; Error

Insert ;
/** Version of the action being executed, as a commit oid. */
action_oid: string;
/** Version of the action being executed, as a ref. */
Expand Down

0 comments on commit 9a8842b

Please sign in to comment.