Ideas, issues, and pull-requests are welcome!
- Github Issues are the best place to request a feature, file a bug, or just ask a question. Also a great place to discuss possible features before you submit a PR.
- Pull Requests are a big help, if you're willing to jump in and make things happen. For a bugfix, or documentation, just jump right in. For major changes or new features, it's best to discuss in an issue first.
Please follow the OddBird Code of Conduct.
- Clone the repository.
- Install dependencies:
yarn install
. - Start dev server:
yarn dev
. Visitlocalhost:3000
.
JS code is formatted with prettier, and CSS is formatted with stylelint. You can
lint the code by running yarn lint
and format it with yarn format
. We
recommend setting up your IDE to automatically format code for you.
A complete end-to-end test suite is available in the tests/
folder.
- Configure Playwright (this step is only required once or when the version of
@playwright/test
changes in package.json):npx playwright install --with-deps
- Run tests (Chromium only):
yarn test
- Run tests (Chromium, Firefox & Webkit):
yarn test:ci