diff --git a/.travis.yml b/.travis.yml index d128f35d..b0f595bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,7 +44,7 @@ script: - yarn lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup + - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO && yarn travis-deploy-once "yarn semantic-release" after_success: # Remove the downloaded copy of phantomJS diff --git a/package.json b/package.json index c81f7fc9..61a3f20f 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,9 @@ "build": "ember build", "lint:js": "eslint ./*.js addon addon-test-support app config lib server test-support tests", "start": "ember serve", - "test": "ember try:each" + "test": "ember try:each", + "travis-deploy-once": "travis-deploy-once", + "semantic-release": "semantic-release" }, "repository": "https://github.com/mike-north/ember-material-lite.git", "homepage": "https://github.com/mike-north/ember-material-lite", diff --git a/tests/dummy/config/optional-features.json b/tests/dummy/config/optional-features.json index b1902623..21f1dc71 100644 --- a/tests/dummy/config/optional-features.json +++ b/tests/dummy/config/optional-features.json @@ -1,3 +1,3 @@ { - "jquery-integration": false + "jquery-integration": true }