Skip to content

Commit

Permalink
Merge 8966ae6 into d21fa3a
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Dec 9, 2018
2 parents d21fa3a + 8966ae6 commit 65a238d
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ node_modules/
.env*
package-lock.json
.idea
test-results/
.DS_store
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sudo: false
language: node_js
cache:
directories:
- ~/.npm
node_js:
- "8.3"
notifications:
email: false
after_success:
- npm run travis-deploy-once "npm run semantic-release"
- npm run coveralls
branches:
except:
- /^v\d+\.\d+\.\d+$/
57 changes: 52 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kibibit/tdd1t",
"version": "0.0.0",
"version": "0.0.0-development",
"description": "A probot for GitHub that makes sure your feature specs match your tests",
"author": "Neil Kalman <Neilkalman@gmail.com>",
"license": "ISC",
Expand All @@ -19,7 +19,26 @@
"lint:fix": "npx eslint --fix ./lib/*.js",
"commit": "npx git-cz",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"test:cov": "jest --coverage",
"coveralls": "npm run test:cov && cat ./test-results/lcov.info | coveralls",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": false,
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"husky": {
"hooks": {
Expand All @@ -40,13 +59,23 @@
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"commitizen": "3.0.4",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
"@semantic-release/npm": "^5.1.1",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "3.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"husky": "^1.2.0",
"jest": "^22.4.3",
"jest-html-reporter": "^2.4.2",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2"
"semantic-release": "^15.12.4",
"semantic-release-cli": "^4.0.12",
"smee-client": "^1.0.2",
"travis-deploy-once": "^5.0.9"
},
"engines": {
"node": ">= 8.3.0"
Expand All @@ -59,6 +88,24 @@
]
},
"jest": {
"testEnvironment": "node"
"testEnvironment": "node",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"coverageDirectory": "./test-results",
"reporters": [
"default",
[
"jest-html-reporter",
{
"pageTitle": "achievibit's Test Report",
"outputPath": "./test-results/test-report.html"
}
]
]
}
}
6 changes: 0 additions & 6 deletions travis.yml

This file was deleted.

0 comments on commit 65a238d

Please sign in to comment.