Skip to content

Commit

Permalink
ci: Run depcheck during 'npm test'
Browse files Browse the repository at this point in the history
  • Loading branch information
matz3 committed Aug 5, 2024
1 parent cc6e8d4 commit 22010bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Perfrom ESLint check
- name: Perform ESLint check
run: npm run lint

- name: Perfrom Licenses check
- name: Perform Licenses check
run: npm run check-licenses

- name: Perform dependency check
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"lint": "eslint .",
"lint:commit": "commitlint -e",
"prepare": "node ./.husky/skip.js || husky",
"test": "npm run lint && npm run build-test && npm run unit",
"test": "npm run lint && npm run build-test && npm run unit && npm run depcheck",
"unit": "ava",
"unit-debug": "ava debug",
"unit-update-snapshots": "ava --update-snapshots",
Expand Down

0 comments on commit 22010bf

Please sign in to comment.