2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Install client dependencies when running TEST_SUITE=lint build

refs #6161
- run the client initialization tasks as part of the `TEST_SUITE=lint` to fix problems with missing `ember-suave` jscs preset
This commit is contained in:
Kevin Ansfield 2015-12-03 17:23:17 +00:00
parent d9d8446f02
commit 4a32098b64

View file

@ -595,7 +595,7 @@ var _ = require('lodash'),
} else if (process.env.TEST_SUITE === 'client') {
grunt.task.run(['test-client']);
} else if (process.env.TEST_SUITE === 'lint') {
grunt.task.run(['lint']);
grunt.task.run(['shell:ember:init', 'shell:bower', 'lint']);
} else {
grunt.task.run(['validate-all']);
}