Background
GitHub Actions lint check is reporting an unused variable warning:
website/scripts/capture-guide-screenshots.mjs
'err' is defined but never used (line 116)
Task
Options:
- Rename to
_err to indicate intentionally unused
- Include the error in the log message for better debugging
Done When
- Lint check passes without warnings for this file
Notes
File: website/scripts/capture-guide-screenshots.mjs:116
} catch (err) {
console.log(` Note: Could not click next at step ${i + 1}, trying Enter key...`);