Before opening an issue, please search the issue tracker to make sure your issue hasn't already been reported.
- You have Node installed at LTS and Yarn at v1.2.0+.
- You are familiar with Yarn >= 2.
- You are familiar with Workspaces.
- You are familiar with Git.
Fork the repo and upload them to local your machine.
git clone https://github.com/YOUR_USERNAME/vk-bridge.git
Install dependencies.
yarn install
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.
Note
Please read PUBLISHING.md before.
For test .github/actions/**
or .github/workflows/**
changes you should:
- Open PR;
- Create a new test branch with your working branch (example,
test/pr42
); - Make random change and push it;
- Open a new PR to your PR of working branch;
- CI will be run with your changes.
This is because we use pull_request_target event for run PR workflow.
Make sure you have completed the following steps:
- You have written tests for a new feature or updated current tests if necessary.
- You have verified that the results of the
yarn run test
andyarn run lint
are valid.
That's it. Thanks!