GA-F003: Step name exceeds 80 characters
Info Style
Why This Matters
Step names longer than 80 characters truncate in the GitHub Actions UI and reduce log readability. Keep names short and descriptive; move details to comments or the step body.
How to Fix
Shorten the step name to 80 characters or fewer
Before (incorrect)
steps:
- name: Run the comprehensive integration test suite against the staging database with full logging enabled
run: npm run test:integration After (correct)
steps:
- name: Run integration tests (staging)
run: npm run test:integration Rule Details
- Rule Code
- GA-F003
- Severity
- Info
- Category
- Style