Skip to content

Commit

Permalink
continuation of work
Browse files Browse the repository at this point in the history
  • Loading branch information
Hweinstock committed Nov 7, 2024
1 parent f1828f7 commit 85a9564
Show file tree
Hide file tree
Showing 4 changed files with 37,775 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/filterJscpd.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const fs = require('fs/promises')

async function main() {
const jscpdReportPath = process.argv[2]
const diffPath = process.argv[3]
console.log('Recieved jscpd path: %s', jscpdReportPath)
console.log('Recieved diff path: %s', diffPath)

const jscpdReport = JSON.parse(await fs.readFile(jscpdReportPath, 'utf8'))
}

void main()
3 changes: 0 additions & 3 deletions .github/workflows/parseJscpd.js

This file was deleted.

Loading

0 comments on commit 85a9564

Please sign in to comment.