This repository was archived by the owner on Jun 27, 2023. It is now read-only.
File tree 3 files changed +19
-14
lines changed
3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,15 @@ name: ci
2
2
3
3
on :
4
4
pull_request :
5
- branches :
6
- - master
7
- - dev
5
+ branches : [$default-branch, next]
8
6
9
7
jobs :
10
8
test-and-release :
11
9
name : Run tests
12
10
runs-on : ubuntu-18.04
13
11
steps :
14
12
- name : Checkout
15
- uses : actions/checkout@v1
13
+ uses : actions/checkout@v2
16
14
- name : Setup Node.js
17
15
uses : actions/setup-node@v1
18
16
with :
Original file line number Diff line number Diff line change 1
1
name : Release
2
2
on :
3
3
push :
4
- branches :
5
- - master
4
+ branches : [$default-branch, next]
6
5
jobs :
7
6
release :
8
7
name : Run test and Release
9
8
runs-on : ubuntu-18.04
10
9
steps :
11
10
- name : Checkout
12
- uses : actions/checkout@v1
11
+ uses : actions/checkout@v2
13
12
- name : Setup Node.js
14
13
uses : actions/setup-node@v1
15
14
with :
Original file line number Diff line number Diff line change 14
14
"publishConfig" : {
15
15
"access" : " public"
16
16
},
17
+ "release" : {
18
+ "branches" : [
19
+ " +([0-9])?(.{+([0-9]),x}).x" ,
20
+ " main" ,
21
+ " next" ,
22
+ " next-major" ,
23
+ { "name" : " beta" , "prerelease" : true },
24
+ { "name" : " alpha" , "prerelease" : true }
25
+ ]
26
+ },
17
27
"scripts" : {
18
28
"serve" : " vue-cli-service serve" ,
19
29
"build" : " vue-cli-service build --target lib --name as-dynamic-forms src/index.js" ,
25
35
"semantic-release" : " semantic-release"
26
36
},
27
37
"main" : " dist/as-dynamic-forms.common.js" ,
28
- "dependencies" : {
29
- "bootstrap" : " ^4.5.0" ,
30
- "core-js" : " ^3.6.5" ,
31
- "sass-resources-loader" : " ^2.0.3" ,
32
- "vue" : " ^2.6.11"
33
- },
34
38
"devDependencies" : {
35
39
"@vue/cli-plugin-babel" : " 4.5.3" ,
36
40
"@vue/cli-plugin-eslint" : " 4.5.3" ,
50
54
"vue-select" : " 3.10.7" ,
51
55
"vue-template-compiler" : " 2.6.11" ,
52
56
"vuepress" : " 1.5.3" ,
53
- "semantic-release" : " 17.1.1"
57
+ "semantic-release" : " 17.1.1" ,
58
+ "bootstrap" : " ^4.5.0" ,
59
+ "core-js" : " ^3.6.5" ,
60
+ "sass-resources-loader" : " ^2.0.3" ,
61
+ "vue" : " ^2.6.11"
54
62
}
55
63
}
You can’t perform that action at this time.
0 commit comments