-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from devfemmy/add-contribution-guidelines
Add contribution guidelines
- Loading branch information
Showing
7 changed files
with
54 additions
and
23,633 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Test and Lint the changes | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build-and-deploy: | ||
name: Build, lint, and test on Node 14.x | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Install deps and build (with cache) | ||
uses: bahmutov/npm-install@v1 | ||
|
||
- name: Lint | ||
run: yarn lint | ||
|
||
- name: Test | ||
run: yarn test --ci --coverage --maxWorkers=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
This repository uses TSDX by Jared Palmer, it follows the same convention. | ||
|
||
Contribution guidelines: | ||
- Fork the repository | ||
- Add make a change | ||
- Add example to illustrate the result of your change | ||
- Please include test | ||
- Submit a PR to this repo, and ask for a review. | ||
- Wait for your changes to be merged. | ||
|
||
|
||
Possible things to do: | ||
- Add more examples | ||
- Include more storybook examples | ||
- HereMaps has a new feature? Add it in! | ||
- Rewrite for performance optimizations. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.