Complete GitHub Actions toolkit with generation and validation capabilities for workflows, custom actions, and CI/CD configurations
97
97%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
{
"name": "[ACTION_NAME]",
"version": "1.0.0",
"description": "[ACTION_DESCRIPTION]",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"lint": "eslint ."
},
"keywords": [
"github-actions",
"[KEYWORD_1]",
"[KEYWORD_2]"
],
"author": "[AUTHOR_NAME]",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0"
}
}