Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a96522

Browse files
authoredDec 8, 2024··
Merge pull request #1607 from callstack/v13
v13 (rc)
2 parents 47b2477 + 1672880 commit 7a96522

File tree

83 files changed

+1266
-2289
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1266
-2289
lines changed
 

‎.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"extends": "@callstack",
33
"rules": {
4-
"react-native/no-raw-text": 0,
54
"no-console": 1,
6-
"react/no-multi-comp": 0,
75
// Ignore certain webpack alias because it can't be resolved
86
"import/no-unresolved": [2, { "ignore": ["^@theme", "^@docusaurus", "^@generated"] }],
7+
"react/no-multi-comp": 0,
98
"react-native/no-color-literals": "off",
109
"react-native/no-inline-styles": "off",
10+
"react-native/no-raw-text": 0,
1111
"react-native-a11y/has-valid-accessibility-descriptors": "off",
1212
"react-native-a11y/has-valid-accessibility-ignores-invert-colors": 0,
1313
"react-native-a11y/has-valid-accessibility-value": "off"

‎.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
test:
5252
needs: [install-cache-deps]
5353
runs-on: ubuntu-latest
54-
name: Test
54+
name: Test (concurrent)
5555
steps:
5656
- name: Checkout
5757
uses: actions/checkout@v4
@@ -67,19 +67,19 @@ jobs:
6767
env:
6868
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6969

70-
test-concurrent:
70+
test-legacy:
7171
needs: [install-cache-deps]
7272
runs-on: ubuntu-latest
73-
name: Test (concurrent mode)
73+
name: Test (legacy)
7474
steps:
7575
- name: Checkout
7676
uses: actions/checkout@v4
7777

7878
- name: Setup Node.js and deps
7979
uses: ./.github/actions/setup-deps
8080

81-
- name: Test in concurrent mode
82-
run: CONCURRENT_MODE=1 yarn test:ci
81+
- name: Test in legacy mode
82+
run: CONCURRENT_MODE=0 yarn test:ci
8383

8484
test-website:
8585
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)
Please sign in to comment.