[FEATURE] Post step for cleaning up the SSH agent

* add `cleanup.js` for stopping the ssh-agent after the job is done
* add `scripts/build.js` to make it easier to build the files in `dist/`
* update README
* remove meaningless dependency `child_process` (its a node core package)
* update `@actions/core` to `^1.2.4`
This commit is contained in:
Thorben Nissen 2020-05-15 09:42:03 +02:00
parent 8f59108fe4
commit b05960c6f2
7 changed files with 387 additions and 13 deletions

View file

@ -7,8 +7,10 @@
"author": "webfactory GmbH <info@webfactory.de>",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.1.0",
"@zeit/ncc": "^0.20.5",
"child_process": "^1.0.2"
"@actions/core": "^1.2.4",
"@zeit/ncc": "^0.20.5"
},
"scripts": {
"build": "node scripts/build.js"
}
}