update gh actions and fix linter errors#22
Merged
BregornOriginal merged 2 commits intodevelopmentfrom Mar 18, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update
linters.ymlconfigurationGitHub Actions – Runner Timeout
Issue: Jobs were stuck with “exceeded the maximum execution time while awaiting a runner for 24h0m0s”.
Change: Updated runs-on: ubuntu-18.04 to runs-on: ubuntu-latest in .github/workflows/linters.yml because ubuntu-18.04 is deprecated and no longer available.
Update
WebhintandStylelintfor local run andgh actionsWebhint
Issue: 7 errors, 3 warnings, 22 hints (compat-api/css, typescript-config, button-type, detect-css-reflows), plus an html-checker error when analyzing TSX files.
Changes:
Button type: Added type="button" to 8 buttons in WorkExperience.tsx, Projects.tsx, and Profile.tsx.
.hintrc: Added config to:
Ignore scrollbar-width and scrollbar-color for compat-api/css
Turn off typescript-config and detect-css-reflows
Limit analysis to **/.html and **/*.css (no TSX) to fix the html-checker error
Browserslist: Added to package.json for compat-api.
Stylelint – Local Run
Issue: npx stylelint "**/*.{css,scss}" did not run locally (likely hung).
Changes:
package.json: Added "lint:css": "stylelint "styles/**/.css" "styles//*.scss"" to avoid scanning the whole project.
.stylelintrc.json: Added node_modules/ and .next/** to ignoreFiles.
styles/globals.css: Fixed color-hex-case (#F7AB0A → #f7ab0a).