We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c03d0 commit 01fdaf2Copy full SHA for 01fdaf2
Makefile
@@ -21,3 +21,7 @@ test:
21
.PHONY: commit
22
commit:
23
$(DOCKER_RUN) git commit -m "$(msg)"
24
+
25
+.PHONY: all
26
+all:
27
+ $(DOCKER_RUN) npm run all
package.json
@@ -8,6 +8,7 @@
8
"npm": ">=6.14.2"
9
},
10
"scripts": {
11
+ "all": "npm run format && npm run lint && npm test",
12
"lint": "eslint ./{src,__tests__}/**/*.ts",
13
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
14
"test": "jest --coverage --verbose --detectOpenHandles",
0 commit comments