From b4575568a9ccc94502c9575e2552762d5d250e74 Mon Sep 17 00:00:00 2001 From: Kacper Cyranowski Date: Wed, 19 Jun 2024 19:32:03 +0200 Subject: [PATCH] fix: ci --- .github/actions/setup_test_project/action.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/actions/setup_test_project/action.yml b/.github/actions/setup_test_project/action.yml index 02fe5215..7379bd27 100644 --- a/.github/actions/setup_test_project/action.yml +++ b/.github/actions/setup_test_project/action.yml @@ -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 + yarn install --cwd example yarn install shell: bash