Skip to content

Commit c6345e0

Browse files
committed
feat(CI): use travis to do CI
1 parent e3ef4db commit c6345e0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#指定运行环境
2+
language: node_js
3+
#指定nodejs版本,可以指定多个
4+
node_js:
5+
- "7.6.0"
6+
7+
before_script:
8+
- npm install
9+
10+
#运行的脚本命令
11+
script:
12+
- npm run test
13+
14+
#指定分支,只有指定的分支提交时才会运行脚本
15+
branches:
16+
only:
17+
- master

0 commit comments

Comments
 (0)