Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 564 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (20 loc) · 564 Bytes

Contributing to React View

  1. Clone the repo locally and run yarn to install dependencies from npm. We use volta.
git clone https://github.com/uber/react-view
cd react-view
pnpm install
  1. You can test your changes inside of the Ladle dev server by running:
pnpm ladle serve
  1. When done, run all unit tests, e2e tests, typescript check and eslint via:
pnpm typecheck
pnpm lint
pnpm test

pnpm exec playwright install
pnpm test:e2e:dev

All features and bug fixes should be covered by unit or e2e tests.