Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
75129834
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
75129834
编写于
6月 27, 2024
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 禁止直接在alpha分支、master分支创建提交
上级
32372c01
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
28 addition
and
3 deletion
+28
-3
.husky/commit-msg
.husky/commit-msg
+1
-0
git-hooks/check-commit.cjs
git-hooks/check-commit.cjs
+16
-0
package.json
package.json
+2
-2
readme.md
readme.md
+9
-1
未找到文件。
.husky/commit-msg
0 → 100644
浏览文件 @
75129834
npm run check-commit -- $1
git-hooks/check-commit.cjs
0 → 100644
浏览文件 @
75129834
const
fs
=
require
(
'
fs
'
)
const
{
execSync
}
=
require
(
'
child_process
'
)
const
message
=
fs
.
readFileSync
(
process
.
argv
[
2
]).
toString
(
'
utf8
'
).
toLowerCase
()
const
branch
=
execSync
(
'
git rev-parse --abbrev-ref HEAD
'
).
toString
().
trim
()
if
(
(
branch
===
'
master
'
||
branch
===
'
alpha
'
)
&&
!
message
.
startsWith
(
'
merge
'
)
&&
!
message
.
startsWith
(
'
*
'
)
)
{
console
.
log
(
'
You are not allowed to commit directly to master or alpha branch
'
)
process
.
exit
(
1
)
}
package.json
浏览文件 @
75129834
...
...
@@ -5,7 +5,7 @@
"version"
:
"1.0.11"
,
"description"
:
"演示 uni-app x 框架的组件、接口、模板"
,
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1
"
"check-commit"
:
"node ./git-hooks/check-commit.cjs
"
},
"repository"
:
"https://gitcode.net/dcloud/hello-uni-app-x"
,
"keywords"
:
[
...
...
@@ -88,4 +88,4 @@
}
}
}
}
\ No newline at end of file
}
readme.md
浏览文件 @
75129834
...
...
@@ -6,10 +6,18 @@ uni-app x [开发文档](https://uniapp.dcloud.net.cn/uni-app-x/)
项目下的js文件为自动化测试的nodejs文件,uni-app x手机端没有js引擎,是纯原生的。
[
自动化测试详见
](
https://uniapp.dcloud.net.cn/worktile/auto/quick-start.html
)
#### 页面截图对比测试
测试用例文件路径:pages/pages.test.js
测试用例文件路径:pages/pages.test.js
其中 pages 变量中保存了所有需要截图对比测试的页面地址,如果有新增示例页面需要截图对比测试将页面地址添加到此变量即可。
**注意**
-
添加到截图对比测试的页面列表,修改内容涉及到变更,需要在测试平台删除基准图
-
动态内容页面不适合截图对比测试,不要添加到截图对比测试的页面列表中
#### 代码提交
仅dev分支允许创建新的提交,master分支与alpha分支仅允许从其他分支cherry-pick或merge。为防止提交代码到错误的分支,可以通过如下方式创建git hook在提交代码时进行检查。
```
bash
npx husky@9.0.11
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录