mirror of
https://github.com/actions/github-script.git
synced 2026-02-09 04:27:25 +00:00
Reverted test change
This commit is contained in:
parent
80e7869b2d
commit
d226a0fe29
3 changed files with 10 additions and 8 deletions
|
|
@ -19,7 +19,11 @@ The following arguments will be provided:
|
||||||
- `io` A reference to the [@actions/io](https://github.com/actions/toolkit/tree/main/packages/io) package
|
- `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
|
- `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
|
- `require` A proxy wrapper around the normal Node.js `require` to enable
|
||||||
- 'se' A library for resusbale functions
|
- `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 relative paths (relative to the current working directory) and
|
||||||
requiring npm packages installed in the current working directory. If for
|
requiring npm packages installed in the current working directory. If for
|
||||||
some reason you need the non-wrapped `require`, there is an escape hatch
|
some reason you need the non-wrapped `require`, there is an escape hatch
|
||||||
|
|
|
||||||
1
dist/index.js
vendored
1
dist/index.js
vendored
|
|
@ -13614,7 +13614,6 @@ class se_Helper {
|
||||||
shell: '/bin/bash'
|
shell: '/bin/bash'
|
||||||
});
|
});
|
||||||
console.log(xmllint.toString());
|
console.log(xmllint.toString());
|
||||||
const x = '22';
|
|
||||||
const command = `#!/bin/bash
|
const command = `#!/bin/bash
|
||||||
cd ` +
|
cd ` +
|
||||||
root +
|
root +
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ export class Helper {
|
||||||
shell: '/bin/bash'
|
shell: '/bin/bash'
|
||||||
})
|
})
|
||||||
console.log(xmllint.toString())
|
console.log(xmllint.toString())
|
||||||
const x = '22'
|
|
||||||
const command =
|
const command =
|
||||||
`#!/bin/bash
|
`#!/bin/bash
|
||||||
cd ` +
|
cd ` +
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue