diff --git a/src/steps/writing/creation/dotGitHub/workflows.ts b/src/steps/writing/creation/dotGitHub/workflows.ts index 0dcb33eb..5d209bb2 100644 --- a/src/steps/writing/creation/dotGitHub/workflows.ts +++ b/src/steps/writing/creation/dotGitHub/workflows.ts @@ -103,11 +103,17 @@ export function createWorkflows(options: Options) { }), }), ...(!options.excludeLintPackageJson && { - "lint-package.yml": createWorkflowFile({ + "lint-package-json.yml": createWorkflowFile({ name: "Lint Package JSON", runs: ["pnpm lint:package-json"], }), }), + ...(!options.excludeLintPackageJson && { + "lint-packages.yml": createWorkflowFile({ + name: "Lint Packages", + runs: ["pnpm lint:package"], + }), + }), ...(!options.excludeLintSpelling && { "lint-spelling.yml": createWorkflowFile({ name: "Lint spelling",