File tree Expand file tree Collapse file tree 4 files changed +10502
-9377
lines changed Expand file tree Collapse file tree 4 files changed +10502
-9377
lines changed Original file line number Diff line number Diff line change 1
1
name : PR Checks
2
2
3
3
on :
4
- push :
5
- branches :
6
- - master
7
- pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
8
9
- jobs :
10
- test :
11
- runs-on : ubuntu-latest
12
- permissions :
13
- contents : read
14
- packages : write
15
- steps :
16
- - name : Checkout
17
- uses : actions/checkout@v2
18
- - uses : actions/setup-node@v2
19
- with :
20
- node-version : ' 12.x'
21
- registry-url : ' https://registry.npmjs.org'
22
- - name : Install
23
- run : npm install
24
- - name : Test
25
- run : npm run test
26
- - uses : codecov/codecov-action@v2
27
- with :
28
- files : coverage/*.json
29
- flags : unittests
30
- name : react-carousel-codecov
31
- fail_ci_if_error : true
32
- verbose : true
33
- lint :
34
- runs-on : ubuntu-latest
35
- permissions :
36
- contents : read
37
- packages : write
38
- steps :
39
- - name : Checkout
40
- uses : actions/checkout@v2
41
- - uses : actions/setup-node@v2
42
- with :
43
- node-version : ' 12.x'
44
- registry-url : ' https://registry.npmjs.org'
45
- - name : Install
46
- run : npm install
47
- - name : Lint
48
- run : npm run lint
49
- build :
50
- runs-on : ubuntu-latest
51
- permissions :
52
- contents : read
53
- packages : write
54
- steps :
55
- - name : Checkout
56
- uses : actions/checkout@v2
57
- - uses : actions/setup-node@v2
58
- with :
59
- node-version : ' 12.x'
60
- registry-url : ' https://registry.npmjs.org'
61
- - name : Install
62
- run : npm install
63
- - name : Build
64
- run : npm run build
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ permissions :
13
+ contents : read
14
+ packages : write
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v2
18
+ - uses : actions/setup-node@v2
19
+ with :
20
+ node-version : ' 12.x'
21
+ registry-url : ' https://registry.npmjs.org'
22
+ - name : Install
23
+ run : npm install
24
+ - name : Commit lint
25
+ uses : wagoid/commitlint-github-action@v4
26
+ - name : Test
27
+ run : npm run test
28
+ - uses : codecov/codecov-action@v2
29
+ with :
30
+ files : coverage/*.json
31
+ flags : unittests
32
+ name : react-carousel-codecov
33
+ fail_ci_if_error : true
34
+ verbose : true
35
+ lint :
36
+ runs-on : ubuntu-latest
37
+ permissions :
38
+ contents : read
39
+ packages : write
40
+ steps :
41
+ - name : Checkout
42
+ uses : actions/checkout@v2
43
+ - uses : actions/setup-node@v2
44
+ with :
45
+ node-version : ' 12.x'
46
+ registry-url : ' https://registry.npmjs.org'
47
+ - name : Install
48
+ run : npm install
49
+ - name : Lint
50
+ run : npm run lint
51
+ build :
52
+ runs-on : ubuntu-latest
53
+ permissions :
54
+ contents : read
55
+ packages : write
56
+ steps :
57
+ - name : Checkout
58
+ uses : actions/checkout@v2
59
+ - uses : actions/setup-node@v2
60
+ with :
61
+ node-version : ' 12.x'
62
+ registry-url : ' https://registry.npmjs.org'
63
+ - name : Install
64
+ run : npm install
65
+ - name : Build
66
+ run : npm run build
Original file line number Diff line number Diff line change
1
+ module . exports = { extends : [ '@commitlint/config-conventional' ] } ;
You can’t perform that action at this time.
0 commit comments