We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89afcfa commit 4b40a43Copy full SHA for 4b40a43
2 files changed
.github/workflows/github-ci.yml
@@ -27,6 +27,9 @@ jobs:
27
- name: Install dependencies
28
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
29
30
+ - name: Perform dependencies analysis
31
+ run: npm run knip
32
+
33
- name: Perform checks and tests
34
run: npm test
35
package.json
@@ -30,7 +30,7 @@
"npm": ">= 8"
},
"scripts": {
- "test": "npm run lint && npm run jsdoc-generate && npm run coverage && npm run knip && npm run check-licenses",
+ "test": "npm run lint && npm run jsdoc-generate && npm run coverage && npm run check-licenses",
"test-azure": "npm run coverage-xunit",
"lint": "eslint ./",
36
"unit": "rimraf test/tmp && ava",
0 commit comments