Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.86 KB

CONTRIBUTING.md

File metadata and controls

68 lines (43 loc) · 1.86 KB

How to Contribute

Reporting Issues and Asking Questions

Before opening an issue, please search the issue tracker to make sure your issue hasn't already been reported.

Contribution Prerequisites

Development

Prepare your environment

Fork the repo and upload them to local your machine.

git clone https://github.com/YOUR_USERNAME/vk-bridge.git

Install dependencies.

yarn install

Next

Go to the root package.json to see the available commands.

There are basic commands you need to know:

  • yarn run build
  • yarn run test
  • yarn run lint

You are ready! Do something cool!

You could see issue tracker to find an interesting issue.

If you want to edit CI

Note

Please read PUBLISHING.md before.

For test .github/actions/** or .github/workflows/** changes you should:

  1. Open PR;
  2. Create a new test branch with your working branch (example, test/pr42);
  3. Make random change and push it;
  4. Open a new PR to your PR of working branch;
  5. CI will be run with your changes.

This is because we use pull_request_target event for run PR workflow.

Prepare for Pull Request

Make sure you have completed the following steps:

  1. You have written tests for a new feature or updated current tests if necessary.
  2. You have verified that the results of the yarn run test and yarn run lint are valid.

That's it. Thanks!