Skip to content

Commit df91296

Browse files
committed
chore(releasing): Add travis config and semantic release
1 parent 0a4b976 commit df91296

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
sudo: false
2+
language: node_js
3+
cache:
4+
directories:
5+
- node_modules
6+
notifications:
7+
email: false
8+
node_js:
9+
- '4'
10+
before_install:
11+
- npm i -g npm@^2.0.0
12+
before_script:
13+
- npm prune
14+
after_success:
15+
- npm run semantic-release
16+
branches:
17+
except:
18+
- "/^v\\d+\\.\\d+\\.\\d+$/"

src/index_test.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
var expect = require('chai').expect;
2+
3+
describe('react-radial-progress', function () {
4+
it('it should load without any problems', function () {
5+
expect(true).to.be.true;
6+
});
7+
});

0 commit comments

Comments
 (0)