Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.12 KB

README.md

File metadata and controls

52 lines (35 loc) · 1.12 KB

Core3 github action teamplate

typescript-action status

This is basic typescript project that implements github action

Install dependencies

$ npm ci

Build

$ npm run build

Test

$ npm run test

Publish to a distribution branch

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

Validate

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! 🚀