From 2879230b1846bf94e7c631fe603cfebb81151e04 Mon Sep 17 00:00:00 2001 From: Konstantinos Maninakis Date: Tue, 30 Jan 2024 16:48:00 +0100 Subject: [PATCH] ci(webview): check typescript grammar for webviews too Signed-off-by: Konstantinos Maninakis --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e1579c52..014ca57c 100644 --- a/package.json +++ b/package.json @@ -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.\"" },