File tree Expand file tree Collapse file tree 3 files changed +39
-25
lines changed Expand file tree Collapse file tree 3 files changed +39
-25
lines changed Original file line number Diff line number Diff line change 1+ name : CD Core
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+ jobs :
9+ build :
10+
11+ runs-on : ubuntu-18.04
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+ - uses : actions/setup-node@v1
16+ with :
17+ node-version : ' 14.x'
18+ registry-url : ' https://registry.npmjs.org'
19+
20+ - name : Download dependencies
21+ run : yarn
22+
23+ - name : Run the tests inside project
24+ run : yarn test
25+
26+ - name : Transpile typescript to javascript
27+ run : yarn build
28+
29+ - name : Automatic GitHub Release
30+ 31+ id : release
32+
33+ - name : Publish to NPM Registry
34+ run : yarn publish --access public
35+ if : steps.release.outputs.released == 'true'
36+ env :
37+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
38+ name : Deploy
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11{
22 "name" : " @secjs/core" ,
3- "version" : " 1.6.7 " ,
3+ "version" : " 1.6.8 " ,
44 "license" : " MIT" ,
55 "author" : " João Lenon" ,
66 "repository" : " https://github.com/SecJS/Core.git" ,
You can’t perform that action at this time.
0 commit comments