From 31d1f587e3f1f34c80bd1e6d2ced92cd09f0e5f1 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 9 Apr 2015 11:36:26 +0200 Subject: [PATCH] :penguin: Run tests also on Linux --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 05efaeb38..24ad88b7e 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -226,7 +226,7 @@ module.exports = (grunt) -> ciTasks.push('set-version', 'check-licenses', 'lint') ciTasks.push('mkdeb') if process.platform is 'linux' ciTasks.push('create-windows-installer') if process.platform is 'win32' - ciTasks.push('test') if process.platform is 'darwin' + ciTasks.push('test') if process.platform in ['darwin', 'linux'] ciTasks.push('codesign') ciTasks.push('publish-build') grunt.registerTask('ci', ciTasks)