Skip to content

Lint, Build, Test

Lint, Build, Test #3

Manually triggered March 23, 2024 14:45
Status Failure
Total duration 26s
Artifacts

push-any-build-3-jobs.yaml

on: workflow_dispatch
checkout_install_lint
16s
checkout_install_lint
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 9 warnings
checkout_install_lint: templates/express-advanced/src/api/middlewares/asyncHandler.ts#L26
Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator. A rejection handler that is not a function will be ignored
checkout_install_lint: templates/express-advanced/src/api/middlewares/asyncHandler.ts#L26
Unsafe argument of type `NextFunction` assigned to a parameter of type `((reason: any) => PromiseLike<never>) | null | undefined`
checkout_install_lint: templates/express-advanced/src/api/middlewares/errorHandler.ts#L19
Unsafe member access .status on an `any` value
checkout_install_lint: templates/express-advanced/src/api/middlewares/errorHandler.ts#L19
Unsafe member access .json on an `any` value
checkout_install_lint: templates/express-advanced/src/api/routes/index.ts#L4
Unsafe assignment of an `any` value
checkout_install_lint: templates/express-advanced/src/api/routes/index.ts#L4
Unsafe call of an `any` typed value
checkout_install_lint: templates/express-advanced/src/api/routes/index.ts#L4
Unsafe member access .Router on an `any` value
checkout_install_lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
checkout_install_lint: src/runners/commander/index.ts#L1
Unexpected empty async arrow function
checkout_install_lint: src/runners/inquirer/index.ts#L1
'inquirer' is defined but never used. Allowed unused vars must match /^_/u
checkout_install_lint: src/runners/inquirer/index.ts#L2
'listInquiry' is defined but never used. Allowed unused vars must match /^_/u
checkout_install_lint: src/runners/vanilla-node/utils.ts#L7
'italic' is defined but never used. Allowed unused vars must match /^_/u
checkout_install_lint: src/runners/vanilla-node/utils.ts#L7
'magenta' is defined but never used. Allowed unused vars must match /^_/u
checkout_install_lint: src/runners/vanilla-node/utils.ts#L7
'red' is defined but never used. Allowed unused vars must match /^_/u
checkout_install_lint: src/runners/vanilla-node/utils.ts#L150
'el' is defined but never used. Allowed unused args must match /^_/u
checkout_install_lint: templates/express-advanced/src/config/index.ts#L6
Prefer using nullish coalescing operator (`??`) instead of a logical or (`||`), as it is a safer operator