Explorar el Código

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

Torkel Ödegaard hace 7 años
padre
commit
21a25f2c27
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  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'
   ]);