Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Dec 4, 2019
1 parent 55ff011 commit 77772ae
Show file tree
Hide file tree
Showing 9 changed files with 115 additions and 60 deletions.
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ inputs:
# Note: Set to false by default since this action does not push to remote by default. When workflow
# fails and auto-push is not set, there is no chance to push the result to remote.
default: false
fail-threshold:
description: 'Threshold which determines if the current workflow fails. Format is the same as alert-threshold input. If this value is not specified, the same value as alert-threshold is used'
required: false
alert-comment-cc-users:
description: 'Comma separated GitHub user names which start with @ (e.g. "@foo,@bar"). They will be mentioned in commit comment for alert.'
required: false
Expand Down
23 changes: 14 additions & 9 deletions node_modules/@types/node/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion node_modules/is-stream/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/semver/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion node_modules/signal-exit/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion node_modules/which/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
"watch": "npm-run-all -p watch:tsc watch:mocha",
"lint": "eslint '**/*.ts'",
"fix": "eslint --fix '**/*.ts'",
"test": "mocha ./test",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"cov": "nyc --reporter=lcov --reporter=text-summary npm test && open ./coverage/lcov-report/index.html"
"mocha": "mocha ./test",
"test": "npm-run-all build mocha",
"coverage": "nyc --reporter=lcov --reporter=text npm run mocha",
"cov": "nyc --reporter=lcov --reporter=text-summary npm run mocha && open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -69,7 +70,7 @@
},
"husky": {
"hooks": {
"pre-push": "npm-run-all lint build test"
"pre-push": "npm-run-all -p lint test"
}
},
"nyc": {
Expand Down
19 changes: 18 additions & 1 deletion src/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 64 additions & 43 deletions src/write.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 77772ae

Please sign in to comment.