-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support forwarding modal props (#61)
* feat: suppport forwarding modalProps * chore: replace registry of dependences in lockfile * chore: replace npm with pnpm & update husky to fix ci * test: add test case & demo
- Loading branch information
1 parent
bc86577
commit f624840
Showing
11 changed files
with
11,296 additions
and
38,791 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 |
---|---|---|
|
@@ -26,13 +26,16 @@ jobs: | |
react: 17 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8.10.5 | ||
- name: Use Node.js LTS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 'lts/*' | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm test -- --coverage | ||
- run: pnpm i | ||
- run: pnpm run build --if-present | ||
- run: pnpm run test --coverage | ||
env: | ||
RSUITE_VERSION: ${{ matrix.rsuite }} | ||
REACT_VERSION: ${{ matrix.react }} | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
- run: npm ci | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8.10.5 | ||
- run: pnpm i | ||
- name: Semantic Release | ||
run: npx semantic-release | ||
run: pnpm semantic-release |
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,2 @@ | ||
|
||
pnpm lint-staged |
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
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.