Skip to content

Commit

Permalink
chore: fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed Aug 9, 2024
1 parent 4939350 commit 7a76c71
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/example-ios-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
- name: Install Pods
working-directory: ${{ matrix.working-directory }}/ios
run: |
bundler install
bundler exec pod install
bundle install
bundle exec pod install
- name: Restore build artifacts from cache
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/example-tvos-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ jobs:
- name: Install Pods
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: |
bundler install
bundler exec pod install
bundle install
bundle exec pod install
- name: Restore build artifacts from cache
uses: actions/cache@v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reanimated-static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:

- name: Install monorepo node dependencies
run: yarn install --immutable
- name: Build Reanimated for TypeScript types
working-directory: packages/react-native-reanimated
run: yarn build

- name: Check TypeScript types
working-directory: packages/react-native-reanimated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Install Paper Pods
if: ${{ matrix.react-native-architecture == 'Paper' }}
working-directory: app/ios
run: export USE_FRAMEWORKS=static NO_FLIPPER=1 && bundle exec && bundle exec pod install
run: export USE_FRAMEWORKS=static NO_FLIPPER=1 && bundle install && bundle exec pod install
- name: Install Fabric Pods
if: ${{ matrix.react-native-architecture == 'Fabric' }}
working-directory: app/ios
run: export USE_FRAMEWORKS=static NO_FLIPPER=1 RCT_NEW_ARCH_ENABLED=1 && bundle exec && bundle exec pod install
run: export USE_FRAMEWORKS=static NO_FLIPPER=1 RCT_NEW_ARCH_ENABLED=1 && bundle install && bundle exec pod install
- name: Build app
working-directory: app
run: npx react-native run-ios --no-packager
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
mockAnimationTimer,
clearRenderOutput,
} from '../../../ReJest/RuntimeTestsApi';
import type { SingleViewSnapshot } from '../../../ReJest/matchers/snapshotMatchers';
import type { SingleViewSnapshot } from '../../../ReJest/TestRunner/UpdatesContainer';

enum TestAnimation {
TIMING = 'withTiming',
Expand Down

0 comments on commit 7a76c71

Please sign in to comment.