From 9458bea2418d9156354241ef14c59ae0b47434ad Mon Sep 17 00:00:00 2001 From: William Duyck Date: Mon, 21 Jul 2014 18:54:54 +0100 Subject: [PATCH] adding travis config file --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..880ea24 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: node_js +node_js: + - "0.10" +branches: + only: + - master +before_script: + - npm install -g grunt-cli +before_deploy: + - echo "Deploying commit $TRAVIS_COMMIT" +deploy: + provider: heroku + strategy: git + api_key: + secure: X3SP7eEEcgd1m6e4dwDfUq/0CijZ3clXuhS37GnFiz1CXODcHBK1yue+6592TBZ6IrixciUshtfsi7Q2f4/u8yg5jd1LjlZ5KYMQdllBGGCfDGeRrS8NPDTUGFuy1hjI0XP2aZG20jtjvaRpULRMC2S2JcKM9JpAifoK5uiNtiM= + app: thunderhug + on: + branch: master + repo: mozilla/thunderhug + tags: true