Is your feature request related to a problem? Please describe.
A lot of pull requests do not specify the exact commands to the tests locally.
Describe the solution you'd like
A boilerplate code-snippet to test the pull request locally. Here is an example:
gh pr checkout PullRequestNumber # checkout pull request locally
npm run compose:up # start up all necessary services
cd ./Backend # navigate to the right directory
swift build # build the project
swift test --filter TestSuiteName # Run tests for TestSuiteName
swift test --filter AnotherTestSuiteName # Run tests for AnotherTestSuiteName