Skip to content

Commit

Permalink
ci(webview): check typescript grammar for webviews too
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantinos Maninakis <[email protected]>
  • Loading branch information
maninak committed Jan 30, 2024
1 parent 991d703 commit 2879230
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
"lint:extension": "eslint . --ext .vue,.ts,.tsx,.js,.jsx --max-warnings 0 --cache --cache-location node_modules/.cache/eslint",
"lint:webviews": "cd ./src/webviews && npm run lintfix",
"test": "npm run test:typings && npm run test:unit && npm run test:e2e",
"test:typings": "tsc --noEmit",
"test:typings": "run-p test:typings:*",
"test:typings:extension": "tsc --noEmit",
"test:typings:webviews": "cd ./src/webviews && npm run type-check",
"test:unit": "echo \"Unit testing not yet implemented.\"",
"test:e2e": "echo \"End-to-end testing not yet implemented.\""
},
Expand Down

0 comments on commit 2879230

Please sign in to comment.