Skip to content

Commit

Permalink
feat(build): Added travis configuration file
Browse files Browse the repository at this point in the history
Added .travis.yml file with the travis build configuration
  • Loading branch information
kasunkv committed Aug 27, 2017
1 parent 5d5109c commit 1e77e09
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
@@ -0,0 +1,22 @@
sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '4'
before_install:
- npm i -g npm@^2.0.0
install:
- npm install -g typescript
before_script:
- npm prune
script:
- npm run build
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/

0 comments on commit 1e77e09

Please sign in to comment.