Skip to content

Instantly share code, notes, and snippets.

@rajbos
Created March 26, 2023 20:13
Show Gist options
  • Save rajbos/7dbb829ed9cd0d585e17fbd05bb367d9 to your computer and use it in GitHub Desktop.
Save rajbos/7dbb829ed9cd0d585e17fbd05bb367d9 to your computer and use it in GitHub Desktop.
GitHub Typescript/JavaScript Actions debugging
// store in .vscode/launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/action.js",
"env": {
"NODE_ENV": "development",
"INPUT_SCOPE" : "reporting/scope.json",
"INPUT_DATABASE" : "reporting/database.json",
"INPUT_REPORT": "reporting/openssf-scorecard-report.md",
"INPUT_GITHUB-TOKEN": "${env:GH_TOKEN}"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment