-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
I want to request a feature
Preserve none zero exit code.
I'm trying to create a Github Action.
To filter actions, it needs 78
as exit code:
index.js
const process = require('process');
process.exit(78)
npm start
will yield 78, but yarn start
will yield 1.
Is there an option that already does this?
TusharKoul