Skip to content

Commit

Permalink
Build: Add travis task for CI build tasks
Browse files Browse the repository at this point in the history
Make it easier for users to repo CI build issues. Still need to work around SCSSLint disconnect
  • Loading branch information
nschonni committed Aug 11, 2014
1 parent 985bc9b commit c4e5861
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Gruntfile.coffee
Expand Up @@ -13,6 +13,16 @@ module.exports = (grunt) ->
]
)

@registerTask(
"travis"
"Default task that runs the core unminified build"
[
"dist"
"test-mocha"
"htmllint"
]
)

@registerTask(
"dist"
"Produces the production files"
Expand All @@ -25,7 +35,6 @@ module.exports = (grunt) ->
"pages:docs"
"pages:versions"
"demos-min"
"htmllint"
]
)

Expand Down
2 changes: 1 addition & 1 deletion script/travis_script.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e

scss-lint .
grunt dist test test-mocha
grunt travis

0 comments on commit c4e5861

Please sign in to comment.