-
Notifications
You must be signed in to change notification settings - Fork 22
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
javascript #65
javascript #65
Conversation
Hi @jiu33, thanks for your contribution! I just updated the CI workflow configurations on master branch, could you please rebase on it and push your branch again? You also need to add a workflow yaml file name: JavaScript CI
on:
push:
paths:
- '.github/workflows/javascript.yml'
- 'javascript/**'
pull_request:
paths:
- '.github/workflows/javascript.yml'
- 'javascript/**'
jobs:
ci:
strategy:
matrix:
module:
- name: 'mysql2'
with_oceanbase_container: true
uses: ./.github/workflows/basic-workflow.yml
with:
language: 'javascript'
module: ${{ matrix.module.name }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container }} |
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.
Thanks for your contribution! I left some comments.
javascript/mysql2/README-CN.md
Outdated
创建 [example.js](example.js) 文件 | ||
|
||
``` | ||
onst mysql = require('mysql2'); |
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.
Typo: 'onst' -> 'const'
javascript/mysql2/README.md
Outdated
创建 [example.js](example.js) 文件 | ||
|
||
``` | ||
onst mysql = require('mysql2'); |
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.
const
javascript/mysql2/README.md
Outdated
|
||
``` | ||
|
||
创建 [example.js](example.js) 文件 |
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 in English right?
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.
sorry I do it
Hi @jiu33, can you translate the Chinese content in README.md to English? Mixing Chinese and English in one document may be confusing for users who only speak English. |
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.
LGTM
Summary
Solution Description