1
0
Fork 0
toolkit/packages/exec
Thomas Boop 95a10d23fa
Pipe audit results to a json file so lerna does not overflow (#515)
* Pipe audit results to a json file so lerna does not overflow

* reorder flags and args
2020-07-14 16:05:53 -04:00
..
__tests__ Allow specifying stdin (#360) 2020-04-13 13:39:42 -04:00
src Allow specifying stdin (#360) 2020-04-13 13:39:42 -04:00
README.md remove misleading verbiage (#258) 2019-12-16 12:43:21 -05:00
RELEASES.md release notes (#308) 2020-01-14 11:58:44 -05:00
package-lock.json bump exec version 2020-04-28 11:59:04 -04:00
package.json Pipe audit results to a json file so lerna does not overflow (#515) 2020-07-14 16:05:53 -04:00
tsconfig.json Add exec (#10) 2019-05-28 15:21:45 -04:00

README.md

@actions/exec

Usage

Basic

You can use this package to execute tools in a cross platform way:

const exec = require('@actions/exec');

await exec.exec('node index.js');

Args

You can also pass in arg arrays:

const exec = require('@actions/exec');

await exec.exec('node', ['index.js', 'foo=bar']);

Output/options

Capture output or specify other options:

const exec = require('@actions/exec');

let myOutput = '';
let myError = '';

const options = {};
options.listeners = {
  stdout: (data: Buffer) => {
    myOutput += data.toString();
  },
  stderr: (data: Buffer) => {
    myError += data.toString();
  }
};
options.cwd = './lib';

await exec.exec('node', ['index.js', 'foo=bar'], options);

Exec tools not in the PATH

You can specify the full path for tools not in the PATH:

const exec = require('@actions/exec');

await exec.exec('"/path/to/my-tool"', ['arg1']);