File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed
Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ build :
13+
14+ runs-on : ubuntu-latest
15+
16+ strategy :
17+ matrix :
18+ node-version : [12.x]
19+
20+ steps :
21+ - name : Checkout code
22+ uses : actions/checkout@v2
23+ - name : Setup ${{ matrix.node-version }}
24+ uses : actions/setup-node@v1
25+ with :
26+ node-version : ${{ matrix.node-version }}
27+ - name : yarn install, build, and test
28+ run : |
29+ yarn install
30+ yarn build
31+ yarn fix
32+ yarn lint
33+ yarn test
Original file line number Diff line number Diff line change 33 "extends" : [" tslint:recommended" ],
44 "jsRules" : {},
55 "rules" : {
6- "object-literal-sort-keys" : false
6+ "object-literal-sort-keys" : false ,
7+ "variable-name" : {
8+ "options" : [
9+ " allow-leading-underscore"
10+ ]
11+ }
712 },
813 "rulesDirectory" : []
14+
915}
You can’t perform that action at this time.
0 commit comments