File tree Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 4545 run : yarn test:env:nodejs
4646 - name : Run node typescript env
4747 run : yarn test:env:node-ts
48+
49+ linter_check :
50+ runs-on : ubuntu-latest
51+ name : linter-check
52+ steps :
53+ - uses : actions/checkout@v2
54+ - name : Cache dependencies
55+ uses : actions/cache@v2
56+ with :
57+ path : |
58+ ./node_modules
59+ key : ${{ hashFiles('yarn.lock') }}
60+ - name : Setup node
61+ uses : actions/setup-node@v2
62+ - name : Install dependencies
63+ run : yarn --dev
64+ - name : Run style check
65+ run : yarn style
66+ - name : yaml-lint
67+ uses : ibiqlik/action-yamllint@v3
68+ with :
69+ config_file : .yamllint.yml
70+
4871 types_test :
4972 runs-on : ubuntu-latest
5073 name : types-test
6083 uses : actions/setup-node@v2
6184 - name : Install dependencies
6285 run : yarn --dev
63- - name : Run style check
86+ - name : Build project
87+ run : yarn build
88+ - name : Run types check
6489 run : yarn types
Original file line number Diff line number Diff line change 8888 uses : actions/setup-node@v2
8989 - name : Install dependencies
9090 run : yarn --dev
91- - name : Run node typescript env
92- run : yarn test:env:node-ts
91+ - name : Build project
92+ run : yarn build
9393 - name : Run types check
9494 run : yarn types
You can’t perform that action at this time.
0 commit comments