You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thank you for considering contributing to serverless-adapter! It's people like you that make this project great.
5
+
6
+
## How to Contribute
7
+
1. Fork the repository.
8
+
2. Create a new branch (`git checkout -b [feat|doc|fix|refactor]/your-branch`).
9
+
3. Make your changes.
10
+
4. Commit your changes (`git commit -am 'Add new feature'`).
11
+
5. Push to the branch (`git push origin feature-branch`).
12
+
6. Create a new Pull Request.
13
+
14
+
## Code of Conduct
15
+
Please read our [Code of Conduct](CODE_OF_CONDUCT.md) to understand the expectations for behavior when contributing to this project.
16
+
17
+
## Reporting Issues
18
+
If you find a bug, please create an issue using the [bug report template](.github/ISSUE_TEMPLATE/bug_report.md). Provide as much detail as possible to help us understand and resolve the issue.
19
+
20
+
## Submitting Pull Requests
21
+
- Ensure your code follows the project's coding standards.
22
+
- Write clear, concise commit messages.
23
+
- Include tests for any new functionality.
24
+
- Ensure all tests pass before submitting your pull request.
25
+
26
+
## Coding Standards
27
+
- Follow the typescript style Guide and pass all style checks
28
+
- Use [Prettier](https://prettier.io/) for code formatting.
29
+
- Ensure your code passes linting (`npm run lint:check`).
30
+
31
+
## Running Tests
32
+
- Run tests with `npm test`.
33
+
- Ensure all tests pass before submitting your pull request.
0 commit comments