New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

is-this-ci

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-this-ci

Web based report generation based on git log to identify if the commits in this repository seem to represent a continuous integration approach.

latest
npmnpm
Version
0.1.7
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

is-this-ci

Web based report generation based on git log to identify if the commits in this repository seem to represent a continuous integration approach.

Installation

Prerequisites:

  • Node.js 20+
  • Git

Clone and install dependencies:

git clone <repo-url>
cd is-this-ci
npm install

Usage

Run the report against a local repository and branch:

npm run is-this-ci -- origin/main

To write to a custom output path:

npm run is-this-ci -- origin/main --output ./is-this-ci-report.html

Reuse as a local tool

Use this repo as a reusable local CLI by adding a shell alias or running it via npx tsx:

alias is-this-ci='node --loader tsx ./src/cli.ts'

Then execute from a git repo:

is-this-ci origin/main

Global installation (local repo)

To make this package available system-wide from your local clone:

cd is-this-ci
npm install
npm link

Then run it from any git repository:

is-this-ci origin/main

To remove the global link later:

npm unlink -g is-this-ci

Global installation (from a local directory)

If you want a global install without linking:

cd is-this-ci
npm install
npm install -g .

Then run it from any git repository:

is-this-ci origin/main

To remove the global install later:

npm uninstall -g is-this-ci

Publish

npm publish

FAQs

Package last updated on 18 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts