Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub action: report on code dupe #11739

Merged
merged 21 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 22 additions & 36 deletions .github/workflows/jscpd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,49 +24,35 @@ jobs:
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 > js_files.txt || true
grep -E '\.js$' changed_files.txt | grep -v 'spec.js' > js_files.txt || true

- name: Run jscpd on changed files
run: |
if [ -s js_files.txt ]; then
jscpd --files $(cat js_files.txt | tr '\n' ',') --threshold 1 --min-tokens 50 --reporters json --output jscpd-report.json
else
echo '{}' > jscpd-report.json
fi
- name: List generated files (debug)
run: ls -l

- name: Upload jscpd report
- name: Upload unfiltered jscpd report
if: always()
uses: actions/upload-artifact@v3
with:
name: jscpd-report
path: jscpd-report.json

- name: Parse jscpd report and post comment
id: post-comment
run: |
DUPLICATIONS=$(jq '.duplicates | length' jscpd-report.json)
if [ "$DUPLICATIONS" -gt 0 ]; then
COMMENT="Found $DUPLICATIONS duplications in the codebase:\n\n"
COMMENT+=$(jq -r '.duplicates[] | "- `\(.firstFile):\(.lines[0])-\(.lines[1])` duplicated in `\(.secondFile):\(.lines[0])-\(.lines[1])`"' jscpd-report.json)
echo "comment<<EOF" >> $GITHUB_ENV
echo "$COMMENT" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
exit 1
fi

- name: Post GitHub comment
if: failure()
uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: process.env.comment
})
name: unfiltered-jscpd-report
path: ./jscpd-report.json
2 changes: 1 addition & 1 deletion modules/mediafuseBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ function hideSASIframe(elementId) {
function outstreamRender(bid) {
hidedfpContainer(bid.adUnitCode);
hideSASIframe(bid.adUnitCode);
// push to render queue because ANOutstreamVideo may not be loaded yet
// push to render queue because ANOutstreamVideo may not be loaded
bid.renderer.push(() => {
window.ANOutstreamVideo.renderAd({
tagId: bid.adResponse.tag_id,
Expand Down
Loading