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 bf39557 commit 851b74aCopy full SHA for 851b74a
.github/workflows/build.yml
@@ -41,5 +41,8 @@ jobs:
41
- name: Run integration tests
42
run: npm run test:integration
43
44
+ - name: Lint package
45
+ run: npm run lint:package
46
+
47
- name: Run benchmark
48
run: npm run benchmark
.husky/pre-commit
@@ -1,3 +1,4 @@
1
npm run test:ci
2
npm run test:esm
3
+npm run lint:package
4
npx lint-staged
package.json
@@ -23,6 +23,7 @@
23
"clean": "rm -rf coverage lib dist",
24
"lint": "eslint .",
25
"lint:fix": "npm run lint -- --fix",
26
+ "lint:package": "publint",
27
"lint:tsc": "tsc --noEmit",
28
"prepare": "husky",
29
"prepublishOnly": "npm run lint && npm run lint:tsc && npm run test:ci && npm run clean && npm run build",
0 commit comments