Skip to content

Latest commit

 

History

History
executable file
·
35 lines (24 loc) · 601 Bytes

CONTRIBUTING.md

File metadata and controls

executable file
·
35 lines (24 loc) · 601 Bytes

Contributing

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

Steps to contribute:

  • Make your changes on a fork
  • Commit using Commitizen
  • Run the tests
  • Submit pull a request

Our project runs tests automatically on pull requests via CI

Running tests locally

# start dbs
npm run docker:start

# mysql
npm run migrate:mysql
npm run introspect:mysql
npm run generate-client
npm run test:myql

# pg
npm run migrate:pg
npm run introspect:pg
npm run generate-client
npm run test:pg

npm run docker:stop