File tree 4 files changed +35
-3
lines changed
packages/api-demo/src/controllers 4 files changed +35
-3
lines changed Original file line number Diff line number Diff line change
1
+ fixtures /** /lib
2
+ packages /** /lib
Original file line number Diff line number Diff line change
1
+ name : Verify
2
+
3
+ on : pull_request
4
+
5
+ jobs :
6
+ verify :
7
+ name : Verify
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout Repo
11
+ uses : actions/checkout@v2
12
+
13
+ - name : Setup Node.js
14
+ uses : actions/setup-node@v2
15
+ with :
16
+ node-version : ' 16'
17
+ cache : ' yarn'
18
+
19
+ - name : Install Dependencies
20
+ run : yarn --frozen-lockfile
21
+
22
+ - name : Build packages
23
+ run : yarn build
24
+
25
+ - name : Lint
26
+ run : yarn lint
27
+
28
+ - name : Check size
29
+ run : yarn size
Original file line number Diff line number Diff line change 19
19
"format:package" : " prettier \" **/package.json\" --write" ,
20
20
"format:ts" : " prettier \" **/*.ts\" --write" ,
21
21
"lint" : " npm-run-all --parallel lint:*" ,
22
- "lint:css" : " stylelint src/** /*.ts" ,
23
- "lint:eslint" : " eslint src scripts" ,
24
- "lint:lit" : " lit-analyzer src --strict" ,
22
+ "lint:css" : " stylelint packages/**/ src/*.ts fixtures/**/src /*.ts" ,
23
+ "lint:eslint" : " eslint packages fixtures scripts" ,
24
+ "lint:lit" : " lit-analyzer packages/**/ src/*.ts fixtures/**/src/*.ts --strict" ,
25
25
"postinstall" : " patch-package" ,
26
26
"release" : " changeset publish && yarn format" ,
27
27
"serve" : " web-dev-server --node-resolve" ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export class AbstractController<T> {
19
19
this . updateData ( data ) ;
20
20
}
21
21
22
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
22
23
updateData ( _data : T [ ] ) {
23
24
if ( this . host . isConnected ) {
24
25
this . host . requestUpdate ( ) ;
You can’t perform that action at this time.
0 commit comments