ghaction-github-pages/node_modules/@actions/exec/README.md

58 lines
1.0 KiB
Markdown
Raw Normal View History

2019-10-11 07:44:23 +08:00
# `@actions/exec`
## Usage
#### Basic
2020-01-17 14:55:37 +08:00
You can use this package to execute tools in a cross platform way:
2019-10-11 07:44:23 +08:00
```js
const exec = require('@actions/exec');
await exec.exec('node index.js');
```
#### Args
You can also pass in arg arrays:
```js
const exec = require('@actions/exec');
await exec.exec('node', ['index.js', 'foo=bar']);
```
#### Output/options
Capture output or specify [other options](https://github.com/actions/toolkit/blob/d9347d4ab99fd507c0b9104b2cf79fb44fcc827d/packages/exec/src/interfaces.ts#L5):
```js
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
2019-12-10 16:48:53 +08:00
You can specify the full path for tools not in the PATH:
2019-10-11 07:44:23 +08:00
```js
const exec = require('@actions/exec');
2019-12-10 16:48:53 +08:00
await exec.exec('"/path/to/my-tool"', ['arg1']);
2019-10-11 07:44:23 +08:00
```