Skip to content

Commit 9023178

Browse files
authored
Develop (#310)
1 parent c43b8c7 commit 9023178

Some content is hidden

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

46 files changed

+2867
-2196
lines changed

.github/workflows/ci-develop-next-main.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
- template/**/*
88

99
jobs:
10-
install_dependencies:
11-
uses: ./.github/workflows/w-install-dependencies.yml
12-
run_linter:
13-
uses: ./.github/workflows/w-run-linters.yml
14-
run_tests:
15-
uses: ./.github/workflows/w-run-tests.yml
16-
# TODO: Add builds and e2e testing phase
10+
run_ci:
11+
name: Install dependencies, lint and test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: ./.github/workflows/w-install-dependencies.yml
16+
- uses: ./.github/workflows/w-run-linters.yml
17+
- uses: ./.github/workflows/w-run-tests.yml

.github/workflows/ci-feature.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ on:
77
- template/**/*
88

99
jobs:
10-
install_dependencies:
11-
uses: ./.github/workflows/w-install-dependencies.yml
12-
run_linter:
13-
uses: ./.github/workflows/w-run-linters.yml
14-
run_tests:
15-
uses: ./.github/workflows/w-run-tests.yml
10+
run_ci:
11+
name: Install dependencies, lint and test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: ./.github/workflows/w-install-dependencies.yml
16+
- uses: ./.github/workflows/w-run-linters.yml
17+
- uses: ./.github/workflows/w-run-tests.yml

.github/workflows/w-install-dependencies.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ jobs:
66
name: Installing yarn dependencies of the project
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
109
- name: Install yarn dependencies
1110
run: |
1211
cd template

template/.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.5

template/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.4'
4+
ruby '2.7.5'
55

66
gem 'cocoapods', '~> 1.11', '>= 1.11.2'

template/Gemfile.lock

Lines changed: 0 additions & 98 deletions
This file was deleted.

template/_flowconfig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ node_modules/react-native/Libraries/polyfills/.*
1111
; Flow doesn't support platforms
1212
.*/Libraries/Utilities/LoadingView.js
1313

14+
.*/node_modules/resolve/test/resolver/malformed_package_json/package\.json$
15+
1416
[untyped]
1517
.*/node_modules/@react-native-community/cli/.*/.*
1618

@@ -50,7 +52,6 @@ nonstrict-import=warn
5052
deprecated-type=warn
5153
unsafe-getters-setters=warn
5254
unnecessary-invariant=warn
53-
signature-verification-failure=warn
5455

5556
[strict]
5657
deprecated-type
@@ -62,4 +63,4 @@ untyped-import
6263
untyped-type-import
6364

6465
[version]
65-
^0.162.0
66+
^0.176.3

template/_gitignore

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23+
ios/.xcode.env.local
2324

2425
# Android/IntelliJ
2526
#
@@ -49,14 +50,14 @@ buck-out/
4950
# For more information about the recommended setup visit:
5051
# https://docs.fastlane.tools/best-practices/source-control/
5152

52-
*/fastlane/report.xml
53-
*/fastlane/Preview.html
54-
*/fastlane/screenshots
53+
**/fastlane/report.xml
54+
**/fastlane/Preview.html
55+
**/fastlane/screenshots
56+
**/fastlane/test_output
5557

5658
# Bundle artifact
5759
*.jsbundle
5860

59-
# CocoaPods
61+
# Ruby / CocoaPods
6062
/ios/Pods/
61-
62-
template/plugins/typescript/template/tsconfig.json
63+
/vendor/bundle/

template/_prettierrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
2-
bracketSameLine: false,
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
34
singleQuote: true,
45
trailingComma: 'all',
56
semi: false,
6-
arrowParens: 'avoid',
77
}

template/_ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.5

0 commit comments

Comments
 (0)