1
0
Fork 0
toolkit/packages/exec
Danny McCormick 293aa1ae02 Update package docs (#38)
* Update README.md

* Add exec guidance

* Add io guidance

* Add tool-cache guidance

* Readability

* Readability

* Readability

* Nit

* Nit

* Nit
2019-08-04 09:00:04 -04:00
..
__tests__ Dont stamp over stdout (#29) 2019-07-11 15:02:45 -04:00
src Add exec (#10) 2019-05-28 15:21:45 -04:00
README.md Update package docs (#38) 2019-08-04 09:00:04 -04:00
package-lock.json Normalize package versions (#20) 2019-06-24 14:36:36 -04:00
package.json Normalize package versions (#20) 2019-06-24 14:36:36 -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 your tools on the command line 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');

const myOutput = '';
const 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 use it in conjunction with the which function from @actions/io to execute tools that are not in the PATH:

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

const pythonPath: string = await io.which('python', true)

await exec.exec(`"${pythonPath}"`, ['main.py']);