Compare commits
No commits in common. "master" and "inside-ci_v1.0.1" have entirely different histories.
master
...
inside-ci_
5 changed files with 8 additions and 38 deletions
11
README.md
11
README.md
|
@ -10,17 +10,14 @@ Returns true if inside CI. Otherwise returns false.
|
|||
|
||||
# CLI
|
||||
|
||||
## `inside-ci` or `in-ci`
|
||||
`inside-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'`
|
||||
* `in-ci && echo 'We are inside CI, install some stuff'`
|
||||
`inside-ci || echo 'We are not inside CI, install some stuff'`
|
||||
|
||||
`inside-ci && echo 'We are inside CI, install some stuff'`
|
||||
|
||||
Example:
|
||||
|
||||
`is-ci || husky install`
|
||||
|
||||
## `not-ci`
|
||||
|
||||
Inverse of the above command
|
||||
|
|
5
not.js
5
not.js
|
@ -1,5 +0,0 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
const { insideCi } = require("./index.js");
|
||||
|
||||
process.exit(!insideCi() ? 0 : 1)
|
|
@ -1 +1 @@
|
|||
{"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"]}
|
||||
{"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"]}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "inside-ci",
|
||||
"version": "1.1.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Quick tool to check if we are inside CI",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -8,9 +8,7 @@
|
|||
"test:watch": "eltro -r dot -w test test.mjs"
|
||||
},
|
||||
"bin": {
|
||||
"inside-ci": "./index.js",
|
||||
"in-ci": "./index.js",
|
||||
"not-ci": "./not.js"
|
||||
"inside-ci": "./index.js"
|
||||
},
|
||||
"watch": {
|
||||
"test": {
|
||||
|
@ -34,7 +32,6 @@
|
|||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"not.js",
|
||||
"index.d.ts",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
|
|
21
test.mjs
21
test.mjs
|
@ -57,7 +57,7 @@ function runCommand(command, options) {
|
|||
})
|
||||
}
|
||||
|
||||
t.describe('CLI in-ci', function() {
|
||||
t.describe('CLI', 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,22 +75,3 @@ t.describe('CLI in-ci', 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)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue