From 1449047d28923d759402d7b1600b5847a515dc20 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Tue, 23 Jan 2018 19:54:32 +0100 Subject: [PATCH] chore: change from pre-commit to pre-push hooks Instead of running the linting and tests on pre-commit, do it on pre-push. That makes it less frequent (and annoying) while doing local development. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 937b07c496..0996573523 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "coverage": "aegir coverage", "coverage-publish": "aegir-coverage publish" }, - "pre-commit": [ + "pre-push": [ "lint", "test" ],