From d9959cf69a7d93ac629f74ca22ccbcefd7e9a490 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Mon, 15 Aug 2022 00:37:01 -0700 Subject: [PATCH] tune before-main-branch-merge npm script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ce2077d..4d0f7e1f 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "lint": "./node_modules/eslint/bin/eslint.js web/app modules", "lint-fix": "./node_modules/eslint/bin/eslint.js --fix web/app modules", "check-code": "./node_modules/typescript/bin/tsc --noEmit", - "before-mainline-merging": "npm run lint && npm run check-code && echo 'All conditions passed. Ready to go to the main branch. Good job!'", + "checks-passed-banner": "echo 'All conditions passed. Ready to go to the main branch. Good job!'", + "before-main-branch-merge": "npm run lint && npm run check-code && npm run checks-passed-banner", "cypress": "npx cypress open" }, "repository": {