From f598e35785add2387739396a2620ad8700e1d81b Mon Sep 17 00:00:00 2001 From: Aly Ezz Date: Mon, 12 Oct 2020 19:34:24 +0200 Subject: [PATCH 1/4] Update config.yml --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bb7c880677..8b2aefa66f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -90,7 +90,7 @@ jobs: steps: - checkout: path: ~/project - - run: yarn install + - run: yarn --ignore-engines - run: name: chmod permissions command: cd android && chmod +x ./gradlew @@ -112,7 +112,7 @@ jobs: path: ~/project - run: name: Install node_modules - command: cd .. && yarn + command: cd .. && yarn --ignore-engines - run: name: Fetch CocoaPods Specs command: curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf @@ -143,7 +143,7 @@ jobs: command: brew tap wix/brew && brew install applesimutils - run: name: Install Node Packages - command: yarn + command: yarn --ignore-engines - run: name: Fetch CocoaPods Specs command: cd ios && curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf @@ -191,7 +191,7 @@ jobs: background: true - run: name: Install Node Packages - command: sudo yarn + command: sudo yarn --ignore-engines - run: name: Generate Android Keystore command: cd android/app && keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "CN=AA, OU=AA, O=AA, L=AA, S=AA, C=EG" From 8e2aebc1703ee3a124b9b57d0805a691006527f7 Mon Sep 17 00:00:00 2001 From: Aly Ezz Date: Mon, 12 Oct 2020 19:36:32 +0200 Subject: [PATCH 2/4] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8b2aefa66f..1091523de2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: - restore_cache: key: node-v1-{{ checksum "package.json" }}-{{ arch }} - - run: yarn install + - run: yarn --ignore-engines - save_cache: key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} From e2d1d078793010fa150a74c876ce9ccab74f4fe1 Mon Sep 17 00:00:00 2001 From: Aly Ezz Date: Mon, 2 Nov 2020 12:50:53 +0200 Subject: [PATCH 3/4] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 55cd469943..0b7eaeb25b 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "devDependencies": { "babel-core": "7.0.0-bridge.0", "babel-jest": "^24.8.0", - "codecov": "^3.7.0", + "codecov": "~3.7.0", "jest": "^24.8.0", "metro-react-native-babel-preset": "0.51.1", "react": "^16.8.6", From 50bd774e77d0a632b3da846884777b62087c3def Mon Sep 17 00:00:00 2001 From: Aly Ezz Date: Mon, 2 Nov 2020 12:52:07 +0200 Subject: [PATCH 4/4] Update config.yml --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1091523de2..65be366d62 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: - restore_cache: key: node-v1-{{ checksum "package.json" }}-{{ arch }} - - run: yarn --ignore-engines + - run: yarn - save_cache: key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} @@ -90,7 +90,7 @@ jobs: steps: - checkout: path: ~/project - - run: yarn --ignore-engines + - run: yarn - run: name: chmod permissions command: cd android && chmod +x ./gradlew @@ -112,7 +112,7 @@ jobs: path: ~/project - run: name: Install node_modules - command: cd .. && yarn --ignore-engines + command: cd .. && yarn - run: name: Fetch CocoaPods Specs command: curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf @@ -143,7 +143,7 @@ jobs: command: brew tap wix/brew && brew install applesimutils - run: name: Install Node Packages - command: yarn --ignore-engines + command: yarn - run: name: Fetch CocoaPods Specs command: cd ios && curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf @@ -191,7 +191,7 @@ jobs: background: true - run: name: Install Node Packages - command: sudo yarn --ignore-engines + command: sudo yarn - run: name: Generate Android Keystore command: cd android/app && keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "CN=AA, OU=AA, O=AA, L=AA, S=AA, C=EG"