From a447f0d8172e01167277067fc2b25c2169af040d Mon Sep 17 00:00:00 2001 From: Kacper Cyranowski Date: Thu, 20 Jun 2024 21:00:06 +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 2c66f193..34e27e5d 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 example --frozen-lockfile + yarn install --cwd example yarn install shell: bash