File tree 3 files changed +7
-16
lines changed
3 files changed +7
-16
lines changed Original file line number Diff line number Diff line change
1
+ package-lock = false
Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
- cache :
4
- yarn : true
5
- directories :
6
- - " ~/.npm"
7
3
notifications :
8
4
email : false
9
5
node_js :
10
6
- ' 10'
11
7
- ' 12'
12
- env :
13
- global :
14
- - PATH=$HOME/.yarn/bin:$PATH
15
- before_install :
16
- - curl -o- -L https://yarnpkg.com/install.sh | bash
17
- install : yarn
18
- script : yarn validate
8
+ script : npm run validate
19
9
jobs :
20
10
include :
21
11
- stage : release
22
12
node_js : ' 12'
23
13
deploy :
24
14
provider : script
25
- script : yarn test:update && npx codecov && npx semantic-release
15
+ script : npm run test:update && npx codecov && npx semantic-release
26
16
skip_cleanup : true
27
17
branches :
28
18
only : master
Original file line number Diff line number Diff line change 90
90
},
91
91
"lint-staged" : {
92
92
"README.md" : [
93
- " yarn toc" ,
93
+ " npm run toc" ,
94
94
" prettier --parser markdown --write" ,
95
95
" git add"
96
96
],
97
97
".all-contributorsrc" : [
98
- " yarn contributors:generate" ,
98
+ " npm run contributors:generate" ,
99
99
" git add"
100
100
],
101
101
"**/*.js" : [
102
- " yarn lint" ,
103
- " yarn test" ,
102
+ " npm run lint" ,
103
+ " npm test" ,
104
104
" git add"
105
105
]
106
106
},
You can’t perform that action at this time.
0 commit comments