Created
March 26, 2023 20:13
-
-
Save rajbos/7dbb829ed9cd0d585e17fbd05bb367d9 to your computer and use it in GitHub Desktop.
GitHub Typescript/JavaScript Actions debugging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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