File tree 4 files changed +89
-23
lines changed
4 files changed +89
-23
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+ name : Branches
5
+
6
+ on :
7
+ push :
8
+ branches-ignore :
9
+ - master
10
+
11
+ jobs :
12
+ build :
13
+ name : Build
14
+ runs-on : ubuntu-latest
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version :
19
+ - 10.x
20
+ - 12.x
21
+ - 14.x
22
+ - 15.x
23
+ steps :
24
+ - uses : actions/checkout@v2
25
+ - name : Use Node.js ${{ matrix.node-version }}
26
+ uses : actions/setup-node@v1
27
+ with :
28
+ node-version : ${{ matrix.node-version }}
29
+ - run : npm i
30
+ - run : npm run build
31
+ - run : npm run test
32
+ env :
33
+ CI : true
Original file line number Diff line number Diff line change
1
+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+ name : Master
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ build :
13
+ name : Build
14
+ runs-on : ubuntu-latest
15
+ strategy :
16
+ matrix :
17
+ node-version :
18
+ - 10.x
19
+ - 12.x
20
+ - 14.x
21
+ - 15.x
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - name : Use Node.js ${{ matrix.node-version }}
25
+ uses : actions/setup-node@v1
26
+ with :
27
+ node-version : ${{ matrix.node-version }}
28
+ - run : npm i
29
+ - run : npm run build
30
+ - run : npm run test
31
+ env :
32
+ CI : true
33
+
34
+ release :
35
+ name : Release
36
+ runs-on : ubuntu-latest
37
+ needs : build
38
+ steps :
39
+ - name : Checkout
40
+ uses : actions/checkout@v1
41
+ - name : Setup Node.js
42
+ uses : actions/setup-node@v1
43
+ with :
44
+ node-version : 12
45
+ - run : npm i
46
+ - run : npm run build
47
+ - run : npm run test
48
+ env :
49
+ CI : true
50
+ - name : Release
51
+ env :
52
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
53
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
54
+ run : npx semantic-release
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 14
14
],
15
15
"scripts" : {
16
16
"build:lib" : " scripts/build.sh" ,
17
- "build:rollup" : " node_modules/.bin/ rimraf bundle.js && node_modules/.bin/ rollup dist-bundle/index.bundle.js --file bundle.js --format iife" ,
17
+ "build:rollup" : " rimraf bundle.js && rollup dist-bundle/index.bundle.js --file bundle.js --format iife" ,
18
18
"build" : " yarn build:lib && yarn build:rollup" ,
19
- "test" : " node_modules/.bin/ jest --no-cache" ,
19
+ "test" : " jest --no-cache" ,
20
20
"buildtest" : " npm run build && npm run test" ,
21
21
"cz" : " git-cz"
22
22
},
47
47
"pre-commit" : " 1.x" ,
48
48
"rimraf" : " 3.0.2" ,
49
49
"rollup" : " ^2.26.10" ,
50
- "travis-deploy-once" : " 5.x" ,
51
50
"ts-jest" : " ^26.3.0" ,
52
51
"ts-node" : " ^9.0.0" ,
53
52
"typescript" : " 4.0.2" ,
You can’t perform that action at this time.
0 commit comments