-
Notifications
You must be signed in to change notification settings - Fork 8
fix: fork checks #194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix: fork checks #194
Conversation
fmenezes
commented
May 2, 2025
•
edited
Loading
edited
- Renames lint to checks
- Moves dependency checks to the main checks workflow
- Enables the checks workflow to run on forks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the GitHub Actions workflow to expand checks beyond linting by adding a new job for dependency checking.
- Renames the workflow from "Lint" to "Checks".
- Adds a new "check-dep" job that installs dependencies, builds the code, removes dev dependencies, and runs an inspection tool.
@@ -42,8 +42,6 @@ jobs: | |||
permissions: | |||
pull-requests: write | |||
contents: write | |||
needs: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drive-by: no need, PRs will wait for tests
9b6c241
to
0d987aa
Compare