GitHub Actions

GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.

In the case of the repo sds-react-components, there are going to exists two main GitHub actions:

  1. Storybook build and deploy: This action is going to be executed every time there is a push to the master branch, generating an updated build of storybook and its components.

The Storybook page can be founf here.

  1. NPM Package Release: This is action is going to be trigger every time there is a release on the repository, automatizing the NPM package release without asking for any credentials.

Last updated