File tree Expand file tree Collapse file tree 3 files changed +22
-130
lines changed Expand file tree Collapse file tree 3 files changed +22
-130
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+
7
+ jobs :
8
+ release :
9
+ name : release
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@master
13
+ - uses : actions/setup-node@v1
14
+ with :
15
+ node-version : " 12.x"
16
+ - run : yarn install --pure-lockfile
17
+ - run : yarn build
18
+ - run : npx semantic-release
19
+ env :
20
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 37
37
"lint:fix" : " yarn run lint -- --fix" ,
38
38
"pretest:cov" : " yarn run lint" ,
39
39
"test:cov" : " jest --coverage" ,
40
- "test" : " jest --watch" ,
41
- "release" : " standard-version"
42
- },
43
- "standard-version" : {
44
- "scripts" : {
45
- "prerelease" : " yarn test:cov"
46
- }
40
+ "test" : " jest --watch"
47
41
},
48
42
"dependencies" : {
49
43
"tslib" : " ^2.0.1"
62
56
"rollup" : " ^2.26.10" ,
63
57
"rollup-plugin-sourcemaps" : " ^0.6.2" ,
64
58
"rollup-plugin-terser" : " ^7.0.2" ,
65
- "standard-version" : " ^9.0.0" ,
66
59
"ts-jest" : " ^26.3.0" ,
67
60
"tslint" : " ^6.1.3" ,
68
61
"typescript" : " ^4.0.2"
You can’t perform that action at this time.
0 commit comments