Skip to content

Commit

Permalink
Resolve conflicts 'develop' into fix/ci-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
OverGlass committed Nov 14, 2023
2 parents fa942bd + 859203b commit 687fdff
Show file tree
Hide file tree
Showing 8 changed files with 974 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
/** @type {import('eslint').Linter.Config} */
const config = {
root: true,
extends: ['@react-native', 'plugin:security/recommended', 'prettier'],
extends: [
'@react-native',
'prettier',
'plugin:security/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Use Node.js 21
uses: actions/setup-node@v1
with:
node-version: "21.1.0"
node-version: "21"

- name: Install Yarn
working-directory: ./
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/appcenter_release_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 21
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '21.1.0'
node-version: "21"
- name: Install Yarn
working-directory: ./
run: npm install -g yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
bundler: "Gemfile.lock"
bundler-cache: true

- name: Use Node.js 21
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "21.1.0"
node-version: "21"

- name: Install Yarn
run: npm install -g yarn
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<application
android:usesCleartextTraffic="true"
tools:targetApi="28"
tools:targetApi="33"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
</application>
Expand Down
2 changes: 1 addition & 1 deletion android/app/tasks.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private static String bumpVersionCode(String text, String key, boolean silent =
def didMatch = matcher.size() == 1 && matcher.hasGroup()
if (!didMatch) {
if (silent) return text
else throw GradleException("Could not find $key in config.gradle")
else throw new FileNotFoundException("Could not find $key in config.gradle")
}
def versionCodeStr = matcher[0][1]
def versionCode = Integer.valueOf(versionCodeStr)
Expand Down
2 changes: 1 addition & 1 deletion ios/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.10
2.6.10
Loading

0 comments on commit 687fdff

Please sign in to comment.