Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]feat: add react native testing library #5132

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 3 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ commands:
steps:
- restore_cache:
keys:
- v5-app_build_ios-{{ checksum ".manifests/app_build" }}
- v4-app_build_ios-{{ checksum ".manifests/app_build" }}
- run:
name: Build App
command: ./scripts/ci-ios
command: ls derived_data || ./scripts/ci-ios
- save_cache:
key: v5-app_build_ios-{{ checksum ".manifests/app_build" }}
key: v4-app_build_ios-{{ checksum ".manifests/app_build" }}
paths:
- derived_data
- node_modules/react-native-config
Expand Down Expand Up @@ -503,14 +503,12 @@ workflows:
- beta-android
- app_store_submission
- play_store_submission
- update-changelog
- build-test-js:
filters:
branches:
ignore:
- app_store_submission
- play_store_submission
- update-changelog
- horizon/block:
context: horizon
project_id: 37
Expand All @@ -526,7 +524,6 @@ workflows:
- app_store_submission
- play_store_submission
- beta-android
- update-changelog
requires:
- build-test-js
- horizon/block
Expand All @@ -537,7 +534,6 @@ workflows:
- app_store_submission
- play_store_submission
- beta-ios
- update-changelog
requires:
- build-test-js
- horizon/block
Expand All @@ -547,8 +543,6 @@ workflows:
only:
- beta-ios
- beta-android
ignore:
- update-changelog
requires:
- build-test-app-ios
- build-test-app-android
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,3 @@ android/app/src/main/assets/fonts
# Firebase files
android/app/google-services.json
GoogleService-Info.plist

storybook.json
103 changes: 0 additions & 103 deletions .secrets.baseline

This file was deleted.

21 changes: 21 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"processors": ["stylelint-processor-styled-components"],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components"
],
"syntax": "scss",
"rules": {
"selector-type-no-unknown": [true, { "ignoreTypes": ["checkbox", "twitterwidget"] }],
"property-no-unknown": [true, { "ignoreProperties": ["resize-mode", "flexgrow"] }],
"block-opening-brace-space-after": null,
"block-closing-brace-space-before": null,
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"declaration-block-no-redundant-longhand-properties": null,
"color-hex-length": null,
"block-no-empty": null,
"declaration-empty-line-before": null,
"function-calc-no-unspaced-operator": null
}
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"Podfile": "ruby",
"*.h": "objective-c",
"*.js": "javascriptreact",
"*.snap": "javascriptreact",
".stylelintrc": "json",
"yarn.lock": "text"
},
"eslint.enable": false,
Expand Down
Loading