-
Notifications
You must be signed in to change notification settings - Fork 4
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
ci(fix): update node.js for github action + reformat files for prettier action #32
Conversation
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.
It looks like your editor may have auto-formatted these pipeline files. Do you really want that as part of the PR?
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.
I certainly can for .tekton
files because they don't exist upstream, but for the other files like src/modules/components/Entry.tsx
I'm not sure if we want to start ignoring those?
The other thing is if we don't commit the formatting now then it will make reviewing both merge conflicts from upstream and pull requests more difficult, however, I don't feel strongly about it so I'm happy to exclude those formatting changes if you prefer.
package.json
Outdated
@@ -8,6 +8,8 @@ | |||
"dev": "next dev", | |||
"build": "next build", | |||
"start": "next start", | |||
"format": "prettier --check --ignore-path .gitignore .", | |||
"format:fix": "prettier --write --ignore-path .gitignore .", |
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.
Or maybe prettier
is formatting the yaml? Can you add --ignore-path .tekton
as well?
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.
Yes that was an intentional format, sorry about that! See my other comment. I'll add --ignore-path .tekton
to this.
cfae8cc
to
8a39d30
Compare
chore: merge with main fix: revert formatting changes to .tekton files chore: rm prettier version from workflow restore deleted file, oops
@lance any idea why the RHTAP check is failing? the logs are really noisy and it's difficult to tell what's going on |
This PR intends to address the failing builds due to enabling GitHub Actions workflows to run.