inside-ci/not.js
Jonatan Nilsson 6e6d989a50
All checks were successful
/ deploy (push) Successful in 27s
Implemented new cli: in-ci and not-ci
2024-11-19 10:44:37 +00:00

5 lines
100 B
JavaScript
Executable file

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