Skip to content

Commit 1e06a26

Browse files
committed
Prettier fix
1 parent 52df64e commit 1e06a26

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/actions/javascript/validatePRChecklist/validatePRChecklist.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ function validateChecklist(body: string): ValidationResult {
7070

7171
const linkedEAppPR = getSectionContent(body, 'Linked E/App PR');
7272
if (!linkedEAppPR) {
73-
errors.push('The "Linked E/App PR" section is empty. Every Onyx PR must link to a corresponding Expensify/App PR that pins this PR via git+https and runs the full E/App test suite.');
73+
errors.push(
74+
'The "Linked E/App PR" section is empty. Every Onyx PR must link to a corresponding Expensify/App PR that pins this PR via git+https and runs the full E/App test suite.',
75+
);
7476
} else if (!E_APP_PR_URL_PATTERN.test(linkedEAppPR)) {
7577
errors.push(`The "Linked E/App PR" section must contain a single Expensify/App PR URL (e.g. https://github.com/Expensify/App/pull/12345), found: "${linkedEAppPR}".`);
7678
}

0 commit comments

Comments
 (0)