Skip to content

Latest commit

 

History

History
134 lines (103 loc) · 3.5 KB

CONTRIBUTING.md

File metadata and controls

134 lines (103 loc) · 3.5 KB

Contributing to Formzillion

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  • Before jumping into a PR be sure to search existing PRs or issues for an open or closed item that relates to your submission.

Priorities

Type of Issue Priority
Minor improvements, non-core feature requests
Confusing UX (... but working)
Core Features
Core Bugs

Developing

The development branch is main. This is the branch that all pull requests should be made against. The changes on the main branch are tagged into a release monthly.

To develop locally:

  1. Fork this repository to your own GitHub account and then clone it to your local device.

  2. Create a new branch:

    git checkout -b MY_BRANCH_NAME
  3. Install Pnpm:

    npm install -g pnpm
  4. Install the dependencies with:

    pnpm i
  5. Set up your .env file:

  6. Start developing and watch for code changes:

    pnpm run dev

Building

You can build the project with:

pnpm run build

Please be sure that you can make a full production build before pushing code.

Testing

More info on how to add new tests coming soon.

Running tests

This will run and test all flows in multiple Chromium windows to verify that no critical flow breaks:

pnpm test-e2e

Linting

To check the formatting of your code:

pnpm lint

If you get errors, be sure to fix them before committing.

Making a Pull Request