Skip to content

Commit 81ca74a

Browse files
committed
fix: Configure Checkov linter
Adds a configuration file for Checkov and integrates it into the GitHub Actions workflow to enforce code scanning.
1 parent 3cdc300 commit 81ca74a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.checkov.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See: https://www.checkov.io/1.Welcome/Quick%20Start.html
2+
3+
compact: true
4+
quiet: true
5+
skip-path:
6+
- coverage
7+
- node_modules

.github/workflows/linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
id: super-linter
4646
uses: super-linter/super-linter/slim@v8
4747
env:
48+
CHECKOV_FILE_NAME: .checkov.yml
4849
DEFAULT_BRANCH: main
4950
FILTER_REGEX_EXCLUDE: dist/**/*
5051
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)