Skip to content

Commit a3af3ea

Browse files
authored
Merge pull request #37 from matt-ball/missing-reporter
add cli reporter default
2 parents c1b0ce8 + bdf8f98 commit a3af3ea

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

dist/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254213,7 +254213,8 @@ async function init () {
254213254213

254214254214
const options = {
254215254215
collection: get('collection', required),
254216-
environment: get('environment')
254216+
environment: get('environment'),
254217+
reporters: 'cli'
254217254218
}
254218254219

254219254220
runNewman(options)

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ async function init () {
1010

1111
const options = {
1212
collection: get('collection', required),
13-
environment: get('environment')
13+
environment: get('environment'),
14+
reporters: 'cli'
1415
}
1516

1617
runNewman(options)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "newman-action",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"description": "Run Postman collections with Newman as a GitHub Action",
55
"main": "dist/index.js",
66
"repository": {

0 commit comments

Comments
 (0)