mirror of
https://github.com/actions/github-script.git
synced 2025-12-21 23:42:29 +00:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cb5c91bd3 | ||
|
|
493b839630 | ||
|
|
904b439f45 | ||
|
|
1e169ae445 | ||
|
|
62fdca610c | ||
|
|
26ee3d2d09 | ||
|
|
be5d094bf9 | ||
|
|
3758c2b05b | ||
|
|
317a0746d1 | ||
|
|
ec171b8961 | ||
|
|
d73e75dea8 | ||
|
|
7afad1e364 | ||
|
|
ebe3cb13e0 | ||
|
|
38e3ffe4c6 | ||
|
|
6eefe48bc9 |
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
on:
|
||||||
|
push: {branches: master}
|
||||||
|
pull_request: {branches: master}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
ci:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with: {node-version: 13.x}
|
||||||
|
- uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}}
|
||||||
|
restore-keys: ${{runner.os}}-npm-
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm test
|
||||||
16
.github/workflows/integration.yml
vendored
Normal file
16
.github/workflows/integration.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
on:
|
||||||
|
push: {branches: master}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
integration:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- id: output-set
|
||||||
|
uses: actions/github-script@master
|
||||||
|
with:
|
||||||
|
script: return 'test'
|
||||||
|
result-encoding: string
|
||||||
|
- run: |
|
||||||
|
if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# github-script
|
# github-script  
|
||||||
|
|
||||||
This action makes it easy to quickly write a script in your workflow that
|
This action makes it easy to quickly write a script in your workflow that
|
||||||
uses the GitHub API and the workflow run context.
|
uses the GitHub API and the workflow run context.
|
||||||
|
|||||||
26
__test__/async-function.test.ts
Normal file
26
__test__/async-function.test.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import {callAsyncFunction} from '../src/async-function'
|
||||||
|
|
||||||
|
describe('callAsyncFunction', () => {
|
||||||
|
test('calls the function with its arguments', async () => {
|
||||||
|
const result = await callAsyncFunction({foo: 'bar'}, 'return foo')
|
||||||
|
expect(result).toEqual('bar')
|
||||||
|
})
|
||||||
|
|
||||||
|
test('throws on ReferenceError', async () => {
|
||||||
|
expect.assertions(1)
|
||||||
|
|
||||||
|
try {
|
||||||
|
await callAsyncFunction({}, 'proces')
|
||||||
|
} catch (err) {
|
||||||
|
expect(err).toBeInstanceOf(ReferenceError)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
test('can access process', async () => {
|
||||||
|
await callAsyncFunction({}, 'process')
|
||||||
|
})
|
||||||
|
|
||||||
|
test('can access console', async () => {
|
||||||
|
await callAsyncFunction({}, 'console')
|
||||||
|
})
|
||||||
|
})
|
||||||
15263
dist/index.js
vendored
15263
dist/index.js
vendored
File diff suppressed because one or more lines are too long
4661
package-lock.json
generated
4661
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
39
package.json
39
package.json
@@ -1,24 +1,43 @@
|
|||||||
{
|
{
|
||||||
"name": "github-script",
|
"name": "github-script",
|
||||||
|
"description": "A GitHub action for executing a simple script",
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
"private": true,
|
|
||||||
"main": "dist/index.js",
|
|
||||||
"scripts": {
|
|
||||||
"build": "ncc build src/main.ts"
|
|
||||||
},
|
|
||||||
"author": "GitHub",
|
"author": "GitHub",
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.1.0",
|
"@actions/core": "^1.2.2",
|
||||||
"@actions/github": "^1.1.0"
|
"@actions/github": "^2.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@zeit/ncc": "^0.20.5",
|
"@types/jest": "^25.1.3",
|
||||||
"husky": "^4.0.1"
|
"@zeit/ncc": "^0.21.1",
|
||||||
|
"husky": "^4.2.3",
|
||||||
|
"jest": "^25.1.0",
|
||||||
|
"ts-jest": "^25.2.1",
|
||||||
|
"typescript": "^3.8.2"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"pre-commit": "npm run build && git add dist/"
|
"pre-commit": "npm run build && git add dist/"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"jest": {
|
||||||
|
"preset": "ts-jest",
|
||||||
|
"testEnvironment": "node",
|
||||||
|
"globals": {
|
||||||
|
"ts-jest": {
|
||||||
|
"diagnostics": {
|
||||||
|
"ignoreCodes": [
|
||||||
|
"151001"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "dist/index.js",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"build": "ncc build src/main.ts",
|
||||||
|
"test": "jest"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
11
src/async-function.ts
Normal file
11
src/async-function.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
const AsyncFunction = Object.getPrototypeOf(async () => {}).constructor
|
||||||
|
|
||||||
|
type AsyncFunctionArguments = {[key: string]: any}
|
||||||
|
|
||||||
|
export function callAsyncFunction(
|
||||||
|
args: AsyncFunctionArguments,
|
||||||
|
source: string
|
||||||
|
): Promise<any> {
|
||||||
|
const fn = new AsyncFunction(...Object.keys(args), source)
|
||||||
|
return fn(...Object.values(args))
|
||||||
|
}
|
||||||
12
src/main.ts
12
src/main.ts
@@ -1,11 +1,11 @@
|
|||||||
import * as core from '@actions/core'
|
import * as core from '@actions/core'
|
||||||
import {context, GitHub} from '@actions/github'
|
import {context, GitHub} from '@actions/github'
|
||||||
|
import {callAsyncFunction} from './async-function'
|
||||||
|
|
||||||
process.on('unhandledRejection', handleError)
|
process.on('unhandledRejection', handleError)
|
||||||
main().catch(handleError)
|
main().catch(handleError)
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const AsyncFunction = Object.getPrototypeOf(async () => {}).constructor
|
|
||||||
const token = core.getInput('github-token', {required: true})
|
const token = core.getInput('github-token', {required: true})
|
||||||
const debug = core.getInput('debug')
|
const debug = core.getInput('debug')
|
||||||
const userAgent = core.getInput('user-agent')
|
const userAgent = core.getInput('user-agent')
|
||||||
@@ -14,10 +14,14 @@ async function main() {
|
|||||||
if (debug === 'true') opts.log = console
|
if (debug === 'true') opts.log = console
|
||||||
if (userAgent != null) opts.userAgent = userAgent
|
if (userAgent != null) opts.userAgent = userAgent
|
||||||
if (previews != null) opts.previews = previews.split(',')
|
if (previews != null) opts.previews = previews.split(',')
|
||||||
const client = new GitHub(token, opts)
|
const github = new GitHub(token, opts)
|
||||||
const script = core.getInput('script', {required: true})
|
const script = core.getInput('script', {required: true})
|
||||||
const fn = new AsyncFunction('require', 'github', 'context', script)
|
|
||||||
const result = await fn(require, client, context)
|
// Using property/value shorthand on `require` (e.g. `{require}`) causes compilatin errors.
|
||||||
|
const result = await callAsyncFunction(
|
||||||
|
{require: require, github, context},
|
||||||
|
script
|
||||||
|
)
|
||||||
|
|
||||||
let encoding = core.getInput('result-encoding')
|
let encoding = core.getInput('result-encoding')
|
||||||
encoding = encoding ? encoding : 'json'
|
encoding = encoding ? encoding : 'json'
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2018",
|
"target": "es2018",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true
|
"forceConsistentCasingInFileNames": true
|
||||||
}
|
},
|
||||||
|
"exclude": ["__test__"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user