-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync features and bugfixs from 206c0e0 (#1688)
* sync features and bugfix from 206c0e0 * chore: coverage all in actions * upgrade ejs
- Loading branch information
Showing
140 changed files
with
1,152 additions
and
967 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 |
---|---|---|
|
@@ -18,14 +18,67 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn | ||
- run: yarn workspace @ringcentral-integration/phone-number test | ||
- run: yarn workspace @ringcentral-integration/i18n test | ||
- run: yarn workspace @ringcentral-integration/locale-loader test | ||
- run: yarn workspace @ringcentral-integration/core test | ||
- run: yarn workspace @ringcentral-integration/commons test | ||
- run: yarn workspace @ringcentral-integration/widgets test | ||
- run: yarn workspace ringcentral-widgets-test test:jest | ||
|
||
- run: yarn workspace @ringcentral-integration/phone-number test --coverage | ||
- name: Phone Number Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/phone-number/coverage/lcov.info | ||
flag-name: phone-number | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/i18n test --coverage | ||
- name: I18n Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/i18n/coverage/lcov.info | ||
flag-name: i18n | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/locale-loader test --coverage | ||
- name: locale-loader Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/locale-loader/coverage/lcov.info | ||
flag-name: locale-loader | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/core test --coverage | ||
- name: Core Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/core/coverage/lcov.info | ||
flag-name: core | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/commons test --coverage | ||
- name: Commons Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/ringcentral-integration/coverage/lcov.info | ||
flag-name: commons | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/widgets test --coverage | ||
- name: Widgets Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/ringcentral-widgets/coverage/lcov.info | ||
flag-name: widgets | ||
parallel: true | ||
- run: yarn workspace ringcentral-widgets-test test --coverage | ||
- name: Widgets Integration Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/ringcentral-widgets-test/coverage/lcov.info | ||
flag-name: widgets-integration | ||
parallel: true | ||
- name: Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
parallel-finished: true | ||
branch-release: | ||
needs: tests | ||
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }} | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
3bc468af3daaeb57779ea6e6fe239e75a4d45cfa | ||
206c0e043399ff4f2bde5fcbf222d6a036e14a92 |
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 |
---|---|---|
|
@@ -34,6 +34,6 @@ | |
"babel-jest": "^27.0.1" | ||
}, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"ringcentral-widgets-test": "**" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -20,5 +20,5 @@ input { | |
|
||
.root { | ||
@include full-size; | ||
background-color: $app-background-color; | ||
background-color: $lightgray; | ||
} |
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 |
---|---|---|
|
@@ -58,6 +58,6 @@ | |
"react-virtualized": "^9.19.1" | ||
}, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"ringcentral-widgets-test": "**" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -50,6 +50,6 @@ | |
] | ||
}, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"i18n": "**" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -67,6 +67,6 @@ | |
] | ||
}, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"locale-loader": "**" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"license": "MIT", | ||
"private": true, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"ringcentral-widgets-test": "**" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -53,6 +53,6 @@ | |
] | ||
}, | ||
"ci": { | ||
"ringcentral-js-widgets": "**" | ||
"phone-number": "**" | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
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
8 changes: 0 additions & 8 deletions
8
packages/ringcentral-integration/modules/Softphone/actionTypes.js
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
packages/ringcentral-integration/modules/Softphone/getSoftphoneReducer.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.