We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e50b2 commit 3f5dbcfCopy full SHA for 3f5dbcf
.github/workflows/include-analysis-diff.yml
@@ -60,7 +60,7 @@ jobs:
60
const rows = fs.readFileSync('./include-analysis-diff.csv', 'utf8').trim().split('\n').map((line) => line.trim().split(','));
61
62
// If there's no include listed, the file itself increased in size
63
- const files = rows.filter((row) => row[4] === '').map((row) => [row[0], row[1], row[2], row[3], parseInt(row[5]), parseInt(row[6]]));
+ const files = rows.filter((row) => row[4] === '').map((row) => [row[0], row[1], row[2], row[3], parseInt(row[5]), parseInt(row[6]]);
64
const edges = rows.filter((row) => row[4] !== '').map((row) => [row[0], row[1], row[2], `${row[3]} --> ${row[4]}`, parseInt(row[5]), parseInt(row[6])]);
65
66
if (files.length > 0 || edges.length > 0) {
0 commit comments