mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 19:47:57 +01:00
1.0 KiB
1.0 KiB
Thanks for your interest in contributing to wisemapping!
Hopefully this document will be improved over time and get to be a complete CONTRIBUTING document.
Sending a Pull Request
- Create a new branch from
develop
. Convention for branch names isfeature/*
orbugfix/*
. Eg.feature/add-contributing-docs
. - Make your changes and test them.
- Run quality checks:
yarn build
yarn lint
yarn test
- Push your changes, and check that the pipeline result is OK.
- If the pipeline failed, spot the issue and fix it.
- If the failure is while running the tests and some snapshot is not matching:
- you can check the difference by downloading the artifacts from the pipeline
- Please check out README.md section on Image Snapshot Testing
- update snapshots with
docker-compose -f docker-compose.snapshots.update.yml up
and then push any image changes
- Create the pull request