mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
Reverted test change
This commit is contained in:
parent
80e7869b2d
commit
d226a0fe29
3 changed files with 10 additions and 8 deletions
16
README.md
16
README.md
|
|
@ -19,12 +19,16 @@ The following arguments will be provided:
|
|||
- `io` A reference to the [@actions/io](https://github.com/actions/toolkit/tree/main/packages/io) package
|
||||
- `exec` A reference to the [@actions/exec](https://github.com/actions/toolkit/tree/main/packages/exec) package
|
||||
- `require` A proxy wrapper around the normal Node.js `require` to enable
|
||||
- 'se' A library for resusbale functions
|
||||
requiring relative paths (relative to the current working directory) and
|
||||
requiring npm packages installed in the current working directory. If for
|
||||
some reason you need the non-wrapped `require`, there is an escape hatch
|
||||
available: `__original_require__` is the original value of `require` without
|
||||
our wrapping applied.
|
||||
- `se` A library for resusbale functions
|
||||
- `createMetaJson` Create meta.json files for all deployable component
|
||||
- `startCheck` Helper method to create a check without annotations
|
||||
- `completeCheck` Helper method to finish a check without annotations
|
||||
|
||||
requiring relative paths (relative to the current working directory) and
|
||||
requiring npm packages installed in the current working directory. If for
|
||||
some reason you need the non-wrapped `require`, there is an escape hatch
|
||||
available: `__original_require__` is the original value of `require` without
|
||||
our wrapping applied.
|
||||
|
||||
Since the `script` is just a function body, these values will already be
|
||||
defined, so you don't have to import them (see examples below).
|
||||
|
|
|
|||
1
dist/index.js
vendored
1
dist/index.js
vendored
|
|
@ -13614,7 +13614,6 @@ class se_Helper {
|
|||
shell: '/bin/bash'
|
||||
});
|
||||
console.log(xmllint.toString());
|
||||
const x = '22';
|
||||
const command = `#!/bin/bash
|
||||
cd ` +
|
||||
root +
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ export class Helper {
|
|||
shell: '/bin/bash'
|
||||
})
|
||||
console.log(xmllint.toString())
|
||||
const x = '22'
|
||||
const command =
|
||||
`#!/bin/bash
|
||||
cd ` +
|
||||
|
|
|
|||
Loading…
Reference in a new issue