From 9c98fc374c14c7ae808c1fd129f8f4a6bd0247e3 Mon Sep 17 00:00:00 2001 From: Tom Jenkinson Date: Mon, 31 Jan 2022 20:53:21 +0000 Subject: [PATCH] run lint after tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ff3b48..2d17f13 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ }, "scripts": { "lint": "eslint --ext .js --max-warnings 0 .", - "test": "run-p test:*", + "test": "run-p test:* && npm run lint", "test:src": "node test/index.js", "test:types": "tsc test/types.ts --noEmit" },