Add @github/local-action and documentation

This commit is contained in:
Nick Alteen
2024-09-06 10:17:43 -04:00
parent 4220638be2
commit 2c9206ccfe
6 changed files with 806 additions and 8 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Action",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"cwd": "${workspaceRoot}",
"args": ["local-action", ".", "src/main.js", ".env"],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "node_modules/**"]
}
]
}