Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 998 Bytes

File metadata and controls

47 lines (34 loc) · 998 Bytes

Contributing

Contributions are welcome and appreciated.

Below you will find the guidelines for contributing to this project.

Getting Started

For easier development setup, we recommend using Codespaces. To get started, click the button below:

Open in GitHub Codespaces

Testing

Required services for the tests to run can be started thanks to docker compose:

docker compose up -d

Then you can run the tests:

# Run suite of all tests/linters
yarn run all
# Run only tests
yarn run test

Pull Request Process

As this is a typescript GitHub Action, once the code is ready it is required to build and package the code accordingly.

The command above will generate a dist folder that will be used by the GitHub Action.

# build and package
yarn run build
yarn run package
# commit the dist folder
git add dist
git commit
# push the changes
git push