GitHub action: report on code dupe #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for Duplicated Code | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-duplication: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: | | |
npm install -g jscpd diff-so-fancy | |
- name: Create jscpd config file | |
run: | | |
echo '{ | |
"threshold": 20, | |
"minTokens": 50, | |
"reporters": [ | |
"json" | |
], | |
"output": "./", | |
"pattern": "**/*.js", | |
"ignore": "**/*spec.js" | |
}' > .jscpd.json | |
- name: Run jscpd on entire codebase | |
run: jscpd | |
- name: Get the diff | |
run: git diff origin/master...HEAD --name-only > changed_files.txt | |
- name: Filter JavaScript files | |
run: | | |
grep -E '\.js$' changed_files.txt | grep -v 'spec.js' > js_files.txt || true | |
- name: List generated files (debug) | |
run: ls -l | |
- name: Filter jscpd report for changed files | |
run: | | |
if [ ! -f ./jscpd-report.json ]; then | |
echo "jscpd-report.json not found" | |
exit 1 | |
fi | |
echo "Filtering jscpd report for changed files..." | |
jq -r '.duplicates[] | select(.firstFile as $file | $file | index(inputs)) or select(.secondFile as $file | $file | index(inputs))' ./jscpd-report.json js_files.txt > filtered-jscpd-report.json | |
cat filtered-jscpd-report.json |