-
-
Notifications
You must be signed in to change notification settings - Fork 299
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
Make CI green again #150
Make CI green again #150
Conversation
member_check: true | ||
} | ||
member_check: true, | ||
}; |
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.
This is just a JSON literal does not need a semicolon. All you semicolon lovers 😅
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.
Well, normally your IDE should pick up eslint
config and blame you for not following the standard.
Anyway, who cares, let's just make CI happy and green
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.
well my vscode did not pickup any eslint errors, did not have the extension installed 😢
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.
Maybe setup pre-commit hook to run "lint" script?
src/services/PushRule.js
Outdated
} | ||
|
||
return RequestHelper.put(this, `projects/${pId}/push_rule`, args); | ||
return RequestHelper.put(this, `projects/${pId}/push_rule`); |
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.
This should be options as second argument since it is a put.
eee7fc1
to
ad7d4b2
Compare
@Casz can you please take a look at the failing PushRule test? If you don't have time at the moment, I'd suggest to disable the test and proceed w/ merge, so that CI can start revealing problems in pending pulls |
Oh, wait a second. Did it ever work? It should not work w/o license uploaded since it's an EE feature |
Ehh sorry did not think of that @R00GER my bad 😭 |
caching can be evil 😈 |
Omg 👏🏽👏🏽👏🏽👏🏽🎉🎉🎉🎉🎉🎉 |
🎉 This PR is included in version 3.8.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
* Disable cache on travis * Fix linter failures * Disable PushRule test (EE-only feature)
* Disable cache on travis * Fix linter failures * Disable PushRule test (EE-only feature)
No description provided.