Skip to content

Commit

Permalink
feat: Add Travis CI (#23)
Browse files Browse the repository at this point in the history
* feat: add travis with dummy test script

* chore: update commit lint config

* ci(travis): fix lts node version
  • Loading branch information
TGiles authored Sep 11, 2019
1 parent 48c476d commit 0a7b86c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- lts/*
- node
2 changes: 2 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ module.exports = {
rules: {
"type-enum": [2, "always", [
'feat',
'ci',
'build',
'chore',
'fix',
'docs',
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
"scripts": {
"start": "node cli",
"release": "release-it"
"release": "release-it",
"test": "echo \"no tests defined\" && exit 0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0a7b86c

Please sign in to comment.