Compare commits

..

2 commits

Author SHA1 Message Date
95f00d8700 readme: Add docs for in-ci and not-ci
All checks were successful
/ deploy (push) Successful in 17s
2024-11-19 10:46:15 +00:00
6e6d989a50 Implemented new cli: in-ci and not-ci
All checks were successful
/ deploy (push) Successful in 27s
2024-11-19 10:44:37 +00:00
5 changed files with 38 additions and 8 deletions

View file

@ -10,14 +10,17 @@ Returns true if inside CI. Otherwise returns false.
# CLI
`inside-ci`
## `inside-ci` or `in-ci`
Returns code 0 if inside CI. Otherwise returns an error code of 1.
`inside-ci || echo 'We are not inside CI, install some stuff'`
`inside-ci && echo 'We are inside CI, install some stuff'`
* `inside-ci || echo 'We are not inside CI, install some stuff'`
* `in-ci && echo 'We are inside CI, install some stuff'`
Example:
`is-ci || husky install`
## `not-ci`
Inverse of the above command

5
not.js Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env node
const { insideCi } = require("./index.js");
process.exit(!insideCi() ? 0 : 1)

View file

@ -1 +1 @@
{"name":"inside-ci","version":"1.0.1","description":"Quick tool to check if we are inside CI","main":"index.js","bin":{"inside-ci":"./index.js"},"repository":{"type":"git","url":"https://git.nfp.is/TheThing/inside-ci.git"},"keywords":["ci","is-ci","inside-ci","environment"],"author":"Jonatan Nilsson","license":"WTFPL","files":["index.js","index.d.ts","README.md","LICENSE"]}
{"name":"inside-ci","version":"1.1.0","description":"Quick tool to check if we are inside CI","main":"index.js","bin":{"inside-ci":"./index.js","in-ci":"./index.js","not-ci":"./not.js"},"repository":{"type":"git","url":"https://git.nfp.is/TheThing/inside-ci.git"},"keywords":["ci","is-ci","inside-ci","environment"],"author":"Jonatan Nilsson","license":"WTFPL","files":["index.js","not.js","index.d.ts","README.md","LICENSE"]}

View file

@ -1,6 +1,6 @@
{
"name": "inside-ci",
"version": "1.0.1",
"version": "1.1.0",
"description": "Quick tool to check if we are inside CI",
"main": "index.js",
"scripts": {
@ -8,7 +8,9 @@
"test:watch": "eltro -r dot -w test test.mjs"
},
"bin": {
"inside-ci": "./index.js"
"inside-ci": "./index.js",
"in-ci": "./index.js",
"not-ci": "./not.js"
},
"watch": {
"test": {
@ -32,6 +34,7 @@
},
"files": [
"index.js",
"not.js",
"index.d.ts",
"README.md",
"LICENSE"

View file

@ -57,7 +57,7 @@ function runCommand(command, options) {
})
}
t.describe('CLI', function() {
t.describe('CLI in-ci', function() {
t.test('should return success/code 0 if CI is filled', async function () {
let result = await runCommand('node index.js', {
env: { CI: 'true' }
@ -75,3 +75,22 @@ t.describe('CLI', function() {
assert.strictEqual(result.err.code, 1)
})
})
t.describe('CLI not-ci', function() {
t.test('should return error code 1 if CI is filled', async function () {
let result = await runCommand('node not.js', {
env: { CI: 'true' }
})
assert.ok(result.err)
assert.strictEqual(result.err.code, 1)
})
t.test('should return success/code 0 if CI is false', async function () {
let result = await runCommand('node not.js', {
env: { CI: 'false' }
})
assert.notOk(result.err)
})
})