Contributions are welcome and appreciated.
Below you will find the guidelines for contributing to this project.
For easier development setup, we recommend using Codespaces. To get started, click the button below:
Required services for the tests to run can be started thanks to docker compose:
docker compose up -dThen you can run the tests:
# Run suite of all tests/linters
yarn run all
# Run only tests
yarn run testAs 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