-
Notifications
You must be signed in to change notification settings - Fork 6
Validate params before request #42
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
Conversation
.github/workflows/publish.yml
Outdated
@@ -16,7 +16,7 @@ jobs: | |||
name: Create GitHub deployment | |||
id: deployment | |||
with: | |||
token: "${{ github.token }}" | |||
token: '${{ github.token }}' |
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.
was this causing any issues or is this just a style preference?
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.
Good question. Automatic setting from prettier
in the pre-commit hook. Not sure why it didn't update when I made the change initially
const retrieveProjectResponse = await patch.projects.retrieveProjects(); | ||
return retrieveProjectResponse.data[0].id; | ||
} | ||
|
||
describe('Preferences Integration', async function () { |
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.
@kleinjm I bit the bullet and rewrote this test in the same style as the Ruby one.
What
Why
Notes
SDK Release Checklist