From a79e6cca09ff886a30c2399a7a1590b9dc94c4ee Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Fri, 22 Nov 2024 06:12:55 +0000 Subject: [PATCH] readme: Add more information on where they can report missing CI --- README.md | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 479f3d9..d57f552 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Returns true if code is running inside CI, otherwise false. +This also works as a drop-in replacement for anyone currently using `is-ci`. + +If your CI is not being detected, feel free to [add an issue for it](https://git.nfp.is/TheThing/inside-ci/issues) or hit me up on [X (formerly Twitter)](https://x.com/TheThing89) or on discord as `thething_89`. + # API `const inside = require('inside-ci')` @@ -12,7 +16,7 @@ Returns true if code is running inside CI, otherwise false. Returns error code 0 if inside CI. -* `in-ci && echo 'running inside CI'` +`in-ci && echo 'running inside CI'` ## `not-ci` diff --git a/package.json b/package.json index 65e69f4..96ecad6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "inside-ci", - "version": "2.0.0", + "version": "2.0.1", "description": "Quick tool to check if we are inside CI", "main": "in.js", "scripts": {