From 2eea83e52fd17a4addf7ac622b39f377e0b84c81 Mon Sep 17 00:00:00 2001 From: Arturas Date: Tue, 23 Oct 2018 21:45:08 +0100 Subject: [PATCH] fix travis typecheck script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5eb08846..40aa167e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: yarn install --check-files --ignore-engines script: - yarn run tslint - - yarn run build --noEmit + - yarn run typecheck - if [[ $GH_TOKEN ]]; then yarn test --forbid-only --forbid-pending; else yarn test --forbid-only; fi; after_script: if [[ $GH_TOKEN ]]; then greenkeeper-lockfile-upload; fi;