Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 805 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (22 loc) · 805 Bytes

Contributing

Development

If you would like to contribute by fixing an open issue or developing a new feature you can use this suggested workflow:

Fork the repository,

  • Create a new feature branch off the main branch.

Install the dependencies of the monorepo:

pnpm install

Run web server:

pnpm run dev

Run test suite

pnpm run test
  • Make and commit desired changes.

    • Make sure to run pnpm run lint --fix before commiting to ensure that there are no linting errors.

Finally, submit a pr from your forked branch to the main branch