瀏覽代碼

Don't do a full frontend release build in test-frontend job, added typescheck (tsc noEmit) instead, fixes #14639

Torkel Ödegaard 7 年之前
父節點
當前提交
21a25f2c27
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 0 1
      scripts/circle-test-frontend.sh
  2. 2 1
      scripts/grunt/default_task.js

+ 0 - 1
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

+ 2 - 1
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'
   ]);