feat(Slider): the label attr supports function types #3924
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MAIN_PULL_REQUEST | |
on: | |
pull_request: | |
branches: [develop, main] | |
types: [opened, synchronize, reopened] | |
jobs: | |
check-email: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: check_github_primary_email | |
run: | | |
# 获取最新提交的作者邮箱和提交者邮箱 | |
log_emails=$(git log --pretty=format:"%ae %ce" -1) | |
# 如果邮箱包含 '[email protected]',跳过验证 | |
if [[ ${log_emails} =~ '[email protected]' ]];then | |
echo "$log_emails 跳过验证" | |
exit 0 | |
fi | |
# 如果邮箱包含 '@tencent.com',校验失败,提示用户更改邮箱 | |
if [[ ${log_emails} =~ '@tencent.com' ]];then | |
echo "默认邮箱 $log_emails 校验非法,可以去 https://github.com/settings/emails 更改" | |
exit 2; | |
else | |
# 否则,校验通过 | |
echo "邮箱 $log_emails 校验通过"; | |
fi | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/install-dep | |
- name: lint 检查 | |
run: npm run lint | |
- name: unit test | |
run: npm run test:unit |