npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@decathlon/newman-reporter-pullrequest-decorator

v0.0.25

Published

Newman reporter allowing to decorate Github's PullRequest with postman collection results

Downloads

142

Readme

newman-reporter-pullrequest-decorator

NPM Version Build, test and publish Quality Gate Status Coverage

Description

Report newman collection results on an extra check in the Pull Request Checks tab. If you need a way to export your Postman collection results into Github Pull Request, and you're using github workflow to handle your CI then you're in the right place !

PullRequest's Check example :

PullRequest's Check example

HIGHLIGHTED FEATURES

  • Handle deep nested postman folder structure
  • Group requests by their folder's name in the generated markdown

Getting Started

  1. Install newman
  2. Install @decathlon/newman-reporter-pullrequest-decorator
  3. Run your github workflow and extract from it :
    • GITHUB TOKEN from your running job. Usually, you can get it from ${{ secrets.GITHUB_TOKEN }}.

Prerequisites

  1. node and npm
  2. newman - npm install -g newman
  3. A github token either from :
    • your running github workflow provided as a secret (see above)
    • your own specific Github App (see Notes what issue this option solves)

Installation

npm install -g @decathlon/newman-reporter-pullrequest-decorator

Installation should be done globally if newman is installed globally, otherwise install without -g option


Usage

Specify -r @decathlon/pullrequest-decorator option while running the collection

In non export mode (it means you actually want to update github pull request) :

newman run <collection-url> --environment=<env-url> -r @decathlon/pullrequest-decorator \
  --reporter-pullrequest-decorator-repo <repo> \
  --reporter-pullrequest-decorator-token <github-token> \
  --reporter-pullrequest-decorator-checkname <check-name> \
  --reporter-pullrequest-decorator-refcommit <ref-commit>

In export mode :

newman run <collection-url> --environment=<env-url> -r @decathlon/pullrequest-decorator \
  --reporter-export <export-path> 

Options:

Option | Remarks --- | --- --reporter-pullrequest-decorator-repo | (Required) Usually you can get it from ${{ github.repository }}. It follows this pattern : "organization/repository" --reporter-pullrequest-decorator-token | (Required) Github token : Usually you can get it from ${{ secrets.GITHUB_TOKEN }} while job is running. For more details : https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret --reporter-pullrequest-decorator-checkname | (Optional : Default newman-check) Name you want to give to the check name that will be created by the reporter. This parameter is useful if you want to wait for a specific check name to be completed inside your workflow. See, for example, the following github action : fountainhead/[email protected] --reporter-pullrequest-decorator-refcommit | (Required) Long Commit hash. When you run this reporter from a Pull Request. You should use : ${{ github.event.pull_request.head.sha }} --reporter-debug | (Optional : Default false) Reporter debug mode --suppress-exit-code | (Optional) Ensure that asynchronous github API is called before reporter termination. --showOnlyFails | (Optional : Default false) Show only failing assertions. --reporter-pullrequest-decorator-enablecomment | (Optional) Boolean. Allows you to get a comment in your pull request containing the summary of the test result.


Notes:

PullRequest's check report can appear on the wrong check suite. This is due to a known github limitation. See here : https://github.community/t/specify-check-suite-when-creating-a-checkrun/118380
To solve this issue, you can use a token from your own created Github App (and not the one used in the github workflow) so this way, the check run will be automatically created on a specific check suite.


Development

  • npm pack
  • npm i -g decathlon-newman-reporter-pullrequest-decorator.<version>.tgz