diff --git a/.github/actions/setup_test_project/action.yml b/.github/actions/setup_test_project/action.yml index 0f652b6e..15cb69ff 100644 --- a/.github/actions/setup_test_project/action.yml +++ b/.github/actions/setup_test_project/action.yml @@ -28,15 +28,15 @@ runs: NODE_VERSION: ${{ inputs.NODE_VERSION }} IS_EXPO: ${{ inputs.IS_EXPO }} - - name: Initialize project default template - if: inputs.IS_EXPO != 'true' - run: npx react-native@latest init BlePlxExample --version ${{ inputs.REACT_NATIVE_VERSION }} --directory test_project --skip-install --verbose - shell: bash + # - name: Initialize project default template + # if: inputs.IS_EXPO != 'true' + # run: npx react-native@latest init BlePlxExample --version ${{ inputs.REACT_NATIVE_VERSION }} --directory test_project --skip-install --verbose + # shell: bash - - name: Initialize project expo template - if: inputs.IS_EXPO == 'true' - run: npx create-expo-app test_project -t expo-template-blank-typescript --no-install - shell: bash + # - name: Initialize project expo template + # if: inputs.IS_EXPO == 'true' + # run: npx create-expo-app test_project -t expo-template-blank-typescript --no-install + # shell: bash - name: Cache dependencies id: yarn-cache @@ -49,17 +49,17 @@ runs: ${{ runner.os }}-${{ inputs.REACT_NATIVE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }} ${{ runner.os }}-${{ inputs.REACT_NATIVE_VERSION }}-yarn- - - name: Copy project files - run: node ./scripts/copyExampleProjectFiles.js - shell: bash - env: - REACT_NATIVE_VERSION: ${{ inputs.REACT_NATIVE_VERSION }} - BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - IS_EXPO: ${{ inputs.IS_EXPO || 'false'}} + # - name: Copy project files + # run: node ./scripts/copyExampleProjectFiles.js + # shell: bash + # env: + # REACT_NATIVE_VERSION: ${{ inputs.REACT_NATIVE_VERSION }} + # BRANCH_NAME: ${{ github.head_ref || github.ref_name }} + # IS_EXPO: ${{ inputs.IS_EXPO || 'false'}} - name: Install dependencies if: steps.yarn-cache.outputs.cache-hit != 'true' run: | - yarn install --cwd test_project --immutable + yarn install --cwd example --no-immutable yarn install shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05dd0273..90506512 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,10 +94,10 @@ jobs: distribution: 'zulu' java-version: '11' - - name: Finalize Android SDK - if: env.turbo_cache_hit != 1 - run: | - /bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null" + # - name: Finalize Android SDK + # if: env.turbo_cache_hit != 1 + # run: | + # /bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null" - name: Cache Gradle if: env.turbo_cache_hit != 1