Implemented new cli: in-ci and not-ci
All checks were successful
/ deploy (push) Successful in 27s

This commit is contained in:
Jonatan Nilsson 2024-11-19 10:44:37 +00:00
parent e866e58dda
commit 6e6d989a50
4 changed files with 31 additions and 4 deletions

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)
})
})