aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci.sh')
-rwxr-xr-xscripts/ci.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index a628cbced..070a104cc 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -40,7 +40,10 @@ findTestFiles () {
40 find $1 -type f -name "*.js" $exception | xargs echo 40 find $1 -type f -name "*.js" $exception | xargs echo
41} 41}
42 42
43if [ "$1" = "client" ]; then 43if [ "$1" = "types" ]; then
44 npm run generate-types-package
45 npm run tsc -- --noEmit --esModuleInterop types/tests/test.ts
46elif [ "$1" = "client" ]; then
44 npm run build 47 npm run build
45 48
46 feedsFiles=$(findTestFiles ./dist/server/tests/feeds) 49 feedsFiles=$(findTestFiles ./dist/server/tests/feeds)