Skip to content

Commit

Permalink
fix: include lint-package-json in generated workflows files
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Sep 4, 2023
1 parent 789ec20 commit 3844538
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/steps/writing/creation/dotGitHub/workflows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3844538

Please sign in to comment.