File tree Expand file tree Collapse file tree 8 files changed +2837
-3733
lines changed
Expand file tree Collapse file tree 8 files changed +2837
-3733
lines changed Original file line number Diff line number Diff line change 1+ name : Continuous Integration
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ ci :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Git Checkout
14+ uses : actions/checkout@v1
15+ - name : Install Package Dependencies
16+ run : yarn
17+ - name : Build Package
18+ run : npm run build
Original file line number Diff line number Diff line change 1+ name : Quality Check
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ qc :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Git Checkout
14+ uses : actions/checkout@v1
15+ - name : Install Package Dependencies
16+ run : yarn
17+ - name : Lint
18+ run : yarn run lint
Original file line number Diff line number Diff line change 1+ name : Production Release
2+
3+ on :
4+ push :
5+ tags :
6+ - ' *.*.*'
7+
8+ jobs :
9+ production_release :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Git Checkout
13+ uses : actions/checkout@v1
14+ - name : Setup Node
15+ uses : actions/setup-node@v1
16+ with :
17+ scope : ' @gatewayapps'
18+ registry-url : https://npm.pkg.github.com
19+ - name : Install Package Dependencies
20+ run : yarn
21+ - name : Publish
22+ run : npm publish
23+ env :
24+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments