mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
import { exec } from "@actions/exec";
|
|
import { getInput } from "@actions/core";
|
|
|
|
exec(process.env['TEST_DATA']); // $ Alert
|
|
exec(process.env['GITHUB_ACTION']);
|
|
|
|
function test(e) {
|
|
exec(e['TEST_DATA']); // $ Alert
|
|
exec(e['GITHUB_ACTION']);
|
|
}
|
|
|
|
test(process.env); // $ Source
|
|
|
|
exec(getInput('data')); // $ Alert
|