We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789ec20 commit 3844538Copy full SHA for 3844538
src/steps/writing/creation/dotGitHub/workflows.ts
@@ -103,11 +103,17 @@ export function createWorkflows(options: Options) {
103
}),
104
105
...(!options.excludeLintPackageJson && {
106
- "lint-package.yml": createWorkflowFile({
+ "lint-package-json.yml": createWorkflowFile({
107
name: "Lint Package JSON",
108
runs: ["pnpm lint:package-json"],
109
110
111
+ ...(!options.excludeLintPackageJson && {
112
+ "lint-packages.yml": createWorkflowFile({
113
+ name: "Lint Packages",
114
+ runs: ["pnpm lint:package"],
115
+ }),
116
117
...(!options.excludeLintSpelling && {
118
"lint-spelling.yml": createWorkflowFile({
119
name: "Lint spelling",
0 commit comments