File tree Expand file tree Collapse file tree 2 files changed +27
-4
lines changed
Expand file tree Collapse file tree 2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1+ name : ' Build Test'
2+
3+ on :
4+ push :
5+ branches :
6+ - ' **'
7+
8+ jobs :
9+ build-test :
10+ runs-on : ubuntu-latest
11+ strategy :
12+ matrix :
13+ node-version : [18.x]
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Running Node.js ${{ matrix.node-version }}
17+ uses : actions/setup-node@v1
18+ with :
19+ node-version : ${{ matrix.node-version }}
20+ # Actual Tests
21+ - run : npm i
22+ - run : npm run lint --if-present
23+ - run : npm run typecheck --if-present
24+ - run : npm run bundle --if-present
Original file line number Diff line number Diff line change @@ -20,11 +20,10 @@ const dummyClient = {
2020 fetch : ( ) => undefined ,
2121 set : ( ) => undefined ,
2222 execute : ( ) => undefined ,
23- return : ( ) => { } ,
23+ return : ( ) => undefined ,
2424 get : ( ) => undefined ,
25- set : ( ) => undefined ,
26- attachEvent : ( ) => { } ,
27- detachEvent : ( ) => { } ,
25+ attachEvent : ( ) => undefined ,
26+ detachEvent : ( ) => undefined ,
2827}
2928
3029const settings = { id : '12345' }
You can’t perform that action at this time.
0 commit comments