-
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.
misc: sync features and bugfixes from f39b7a45 (#1747)
* misc: sync features and bugfixes from ba8d789 * misc: add i18n-dayjs and react-hooks packages * version to 0.15.0 * chore: update crius * misc: sync from f39b7a45 * chore: fix tests * chore: fix tests * chore: run test with --updateSnapshot
- Loading branch information
Showing
2,770 changed files
with
38,587 additions
and
20,830 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14.x] | ||
node-version: [20.x] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
@@ -18,6 +18,14 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn | ||
- run: yarn workspace @ringcentral-integration/babel-settings test --coverage | ||
- name: Babel Settings Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/babel-settings/coverage/lcov.info | ||
flag-name: babel-settings | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/phone-number test --coverage | ||
- name: Phone Number Coveralls | ||
uses: coverallsapp/[email protected] | ||
|
@@ -58,6 +66,14 @@ jobs: | |
path-to-lcov: ./packages/core/coverage/lcov.info | ||
flag-name: core | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/react-hooks test --coverage | ||
- name: Core Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./packages/react-hooks/coverage/lcov.info | ||
flag-name: react-hooks | ||
parallel: true | ||
- run: yarn workspace @ringcentral-integration/commons test --coverage | ||
- name: Commons Coveralls | ||
uses: coverallsapp/[email protected] | ||
|
@@ -66,15 +82,15 @@ jobs: | |
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 --ci --coverage | ||
- 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 --ci --coverage --updateSnapshot | ||
env: | ||
NODE_OPTIONS: --max-old-space-size=4096 | ||
- name: Widgets Integration Coveralls | ||
|
@@ -100,10 +116,10 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
node-version: 20.x | ||
- run: yarn | ||
- run: yarn workspace @ringcentral-integration/utils release | ||
- name: Utils Branch Release | ||
|
@@ -129,6 +145,22 @@ jobs: | |
BRANCH: i18n-release | ||
FOLDER: release/i18n | ||
CLEAN: true | ||
- run: yarn workspace @ringcentral-integration/i18n-dayjs release | ||
- name: I18n Dayjs Branch Release | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: i18n-dayjs-release | ||
FOLDER: release/i18n-dayjs | ||
CLEAN: true | ||
- run: yarn workspace @ringcentral-integration/react-hooks release | ||
- name: React Hooks Branch Release | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: react-hooks-release | ||
FOLDER: release/react-hooks | ||
CLEAN: true | ||
- run: yarn workspace @ringcentral-integration/locale-loader release | ||
- name: Locale Loader Branch Release | ||
uses: JamesIves/[email protected] | ||
|
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 @@ | ||
dd3f20d7a363f451ee63d4fabd04e4b97dbea059 | ||
f39b7a45cca0781ea4231df645cd9c97e6c641fa |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import { transform } from '@babel/core'; | ||
|
||
import crius from '../lib'; | ||
|
||
describe('crius preset', () => { | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import Crius, { Step } from 'crius'; | ||
|
||
import { run } from '../src'; | ||
|
||
test('test run for step', async () => { | ||
|
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,4 +1,5 @@ | ||
import Crius from 'crius'; | ||
|
||
import { run } from '../src'; | ||
|
||
test('runner lifecycle with JSX', async () => { | ||
|
Oops, something went wrong.