-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Fix broken lint on CI #5507
Fix broken lint on CI #5507
Conversation
i'm currently getting errors with yarn lint locally, but CI is succeeding. meaning i always have to bypass commit hooks Unable to resolve path to module '@uppy/...' import/no-unresolved
Prettier failing currently |
yes, and lint is still succeeding 🤔 ima try more things |
wow i found the culprit Line 58 in 437aecd
|
to heck with it. i'll just disable the rule. i don't think it's very necessary now that we have typescript (which should also error if the import cannot be resolved, right?) |
i don't think it's very necessary now that we have typescript
Diff output filesNo diff |
@@ -25,22 +26,12 @@ jobs: | |||
steps: | |||
- name: Checkout sources | |||
uses: actions/checkout@v4 | |||
- name: Get yarn cache directory path |
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.
Why remove this?
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.
Because the setup-node action supports caching built in, so we can remove all this
i'm currently getting errors with yarn lint locally, but CI is succeeding. meaning i always have to bypass commit hooks: