This is basic typescript project that implements github action
$ npm ci
$ npm run build
$ npm run test
Actions are run from GitHub repos so we will checkin the packed dist folder.
$ npm run bundle
$ git add dist
$ git commit -a -m "prod dependencies"
$ git push origin releases/v1
Your action is now published! 🚀
See the versioning documentation
You can now validate the action by referencing ./
in a workflow in your repo (see test.yml)
uses: ./
with:
name_param: Yosi
See the actions tab for runs of this action! 🚀