diff --git a/.github/src/check.js b/.github/src/check.js index 15a0ebf9..962e6655 100644 --- a/.github/src/check.js +++ b/.github/src/check.js @@ -289,10 +289,10 @@ const getTotal = (answered) => { const answered = skills[unit]; if (expected) { const todo = match(expected, answered); - todos.push(`\n## [${unit}](Skills/${unit}.md)\n`); + todos.push(`\n## [${unit}](/Skills/${unit}.md)\n`); todos.push(...todo); } - totals.push(`- [${unit}](Skills/${unit}.md)`); + totals.push(`- [${unit}](/Skills/${unit}.md)`); const total = getTotal(answered); totals.push(...total); }