-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
4,216 additions
and
5,804 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
env: | ||
RUBY_VERSION: 3.0.3 | ||
NODE_VERSION: 16.13.0 | ||
NODE_VERSION: 20.4.0 | ||
|
||
jobs: | ||
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
env: | ||
RUBY_VERSION: 3.0.3 | ||
NODE_VERSION: 16.13.0 | ||
NODE_VERSION: 20.4.0 | ||
|
||
jobs: | ||
build-documentation: | ||
|
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,7 +1,7 @@ | ||
name: flash-list | ||
up: | ||
- node: | ||
version: v16.13.0 | ||
version: v20.4.0 | ||
yarn: 1.22.15 | ||
|
||
server: | ||
|
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,53 @@ | ||
/** | ||
* Detox configuration | ||
* https://wix.github.io/Detox/docs/introduction/project-setup | ||
* | ||
* @type {import('detox').DetoxConfig} | ||
*/ | ||
module.exports = { | ||
testRunner: { | ||
$0: "jest", | ||
args: { | ||
config: "e2e/config.js", | ||
}, | ||
}, | ||
apps: { | ||
"ios.release": { | ||
type: "ios.app", | ||
binaryPath: | ||
"ios/build/Build/Products/Release-iphonesimulator/FlatListPro.app", | ||
build: | ||
"export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/FlatListPro.xcworkspace -scheme FlatListPro -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -quiet -destination 'generic/platform=iOS Simulator'", | ||
}, | ||
"android.release": { | ||
type: "android.apk", | ||
binaryPath: "android/app/build/outputs/apk/release/app-release.apk", | ||
build: | ||
"cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..", | ||
}, | ||
}, | ||
devices: { | ||
simulator: { | ||
type: "ios.simulator", | ||
device: { | ||
type: "iPhone 11", | ||
}, | ||
}, | ||
emulator: { | ||
type: "android.emulator", | ||
device: { | ||
avdName: "React-Native-Phone", | ||
}, | ||
}, | ||
}, | ||
configurations: { | ||
"ios.sim.release": { | ||
device: "simulator", | ||
app: "ios.release", | ||
}, | ||
"android.emu.release": { | ||
device: "emulator", | ||
app: "android.release", | ||
}, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.