File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 11on :
2+ workflow_dispatch :
23 push :
34 branches :
45 - main
56 - feature/*
67 - release/*
8+ paths :
9+ - ' **.ts'
10+ - ' **.json'
11+ - ' **.yml'
712 pull_request :
813 paths :
914 - ' !*.md'
Original file line number Diff line number Diff line change 1+ name : DEMO DEPLOY
2+ on : [workflow_dispatch]
3+ jobs :
4+ test :
5+ strategy :
6+ matrix :
7+ # platform: [ windows-latest, macOS-latest ]
8+ platform : [ubuntu-latest]
9+ node : ['16']
10+ name : Code check on Node.${{ matrix.node }}/${{ matrix.platform }}
11+ runs-on : ${{ matrix.platform }}
12+ steps :
13+ - uses : actions/checkout@v2
14+ - uses : actions/setup-node@v2
15+ with :
16+ node-version : ' 16'
17+ - run : npm ci
18+ - run : npm run deploy:demo
19+ - uses : paambaati/codeclimate-action@v2.7.5
20+ env :
21+ CC_TEST_REPORTER_ID : af882de8052c9e436d8e7980bec9c61773f9a9e8cf327b27e97832bfa9628f11
22+ with :
23+ coverageLocations : |
24+ ${{github.workspace}}/coverage/lcov.info:lcov
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export type EndgineProps = {
55 language : string ;
66 } ;
77} ;
8+
89export type EndgineFunction = ( props : EndgineProps ) => {
910 markup : string ;
1011} ;
You can’t perform that action at this time.
0 commit comments