mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05: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:
parent
d9d8446f02
commit
4a32098b64
1 changed files with 1 additions and 1 deletions
|
@ -595,7 +595,7 @@ var _ = require('lodash'),
|
||||||
} else if (process.env.TEST_SUITE === 'client') {
|
} else if (process.env.TEST_SUITE === 'client') {
|
||||||
grunt.task.run(['test-client']);
|
grunt.task.run(['test-client']);
|
||||||
} else if (process.env.TEST_SUITE === 'lint') {
|
} else if (process.env.TEST_SUITE === 'lint') {
|
||||||
grunt.task.run(['lint']);
|
grunt.task.run(['shell:ember:init', 'shell:bower', 'lint']);
|
||||||
} else {
|
} else {
|
||||||
grunt.task.run(['validate-all']);
|
grunt.task.run(['validate-all']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue