From 21a25f2c270c510a9b064d67c32f1cf98dfa1c18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 24 Dec 2018 07:12:49 +0100 Subject: [PATCH] Don't do a full frontend release build in test-frontend job, added typescheck (tsc noEmit) instead, fixes #14639 --- scripts/circle-test-frontend.sh | 1 - scripts/grunt/default_task.js | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/circle-test-frontend.sh b/scripts/circle-test-frontend.sh index 68c044b395c..3af199d3ff2 100755 --- a/scripts/circle-test-frontend.sh +++ b/scripts/circle-test-frontend.sh @@ -11,4 +11,3 @@ function exit_if_fail { } exit_if_fail npm run test -exit_if_fail npm run build diff --git a/scripts/grunt/default_task.js b/scripts/grunt/default_task.js index 7b975aac977..2dee970fc6e 100644 --- a/scripts/grunt/default_task.js +++ b/scripts/grunt/default_task.js @@ -10,8 +10,9 @@ module.exports = function (grunt) { grunt.registerTask('test', [ 'sasslint', + 'exec:tsc', 'exec:tslint', - "exec:jest", + 'exec:jest', 'no-only-tests' ]);