pr-checkmate 1.9.5 → 1.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,6 +9,7 @@
9
9
  * ✅ Enforces a unified code style across repositories.
10
10
  * ✅ Checks `package.json` / `package-lock.json` for dependency changes.
11
11
  * ✅ Spellcheck for code, documentation, and JSON files.
12
+ * ✅ Scans for secrets using
12
13
 
13
14
  <br>
14
15
  > ⚠️ **Note:** Currently, PR CheckMate only supports **Node.js projects**.
@@ -33,6 +33,7 @@ async function runJob(jobName) {
33
33
  case 'all':
34
34
  await (0, lint_1.runLint)();
35
35
  await (0, dependency_check_1.runDependencyCheck)();
36
+ await (0, security_1.runSecurityScan)();
36
37
  try {
37
38
  await (0, prettier_autoformat_1.runPrettier)();
38
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pr-checkmate",
3
- "version": "1.9.5",
3
+ "version": "1.9.6",
4
4
  "description": "Automated PR quality checks: linting, formatting, dependency analysis, and spellcheck",
5
5
  "keywords": [
6
6
  "github-actions",