Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
TimurRin committed Jan 18, 2025
1 parent 78a8af8 commit d72aec0
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/developments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,14 @@ async function addGithubActionsToDevelopmentPack(development: AncaDevelopment) {
return;
}

await addFileToPack(development, ".github/workflows/cinnabar-meta-master.yml");
await addFileToPack(development, ".github/workflows/cinnabar-meta-pull-requests.yml");
await addFileToPack(
development,
".github/workflows/cinnabar-meta-master.yml",
);
await addFileToPack(
development,
".github/workflows/cinnabar-meta-pull-requests.yml",
);

if (development.state.config.stack !== "nodejs") {
return;
Expand All @@ -399,11 +405,15 @@ async function checkGithubActionsToDevelopmentPack(
}

if (!(await checkGithubActionsCinnabarMetaMaster(development))) {
development.state.issues.push("githubActionsCinnabarMetaMasterSetToDefault");
development.state.issues.push(
"githubActionsCinnabarMetaMasterSetToDefault",
);
}

if (!(await checkGithubActionsCinnabarMetaPullRequests(development))) {
development.state.issues.push("githubActionsCinnabarMetaPullRequestsSetToDefault");
development.state.issues.push(
"githubActionsCinnabarMetaPullRequestsSetToDefault",
);
}

if (development.state.config.stack !== "nodejs") {
Expand Down

0 comments on commit d72aec0

Please sign in to comment.