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 9d82b3d commit 9cebfabCopy full SHA for 9cebfab
package.json
@@ -0,0 +1,12 @@
1
+{
2
+ "devDependencies": {
3
+ "husky": "^3.0.5",
4
+ "prettier": "^1.18.2",
5
+ "pretty-quick": "^1.11.1"
6
+ },
7
+ "husky": {
8
+ "hooks": {
9
+ "pre-commit": "./scripts/pre-commit.sh"
10
+ }
11
12
+}
scripts/pre-commit.sh
@@ -0,0 +1,5 @@
+# Run prettier over the repo
+yarn pretty-quick;
+
+# Build lock-closed github action bundle.
+yarn --cwd github-actions/lock-closed build;
0 commit comments