Skip to content

chore: improve README badges and harden publish workflow #28

chore: improve README badges and harden publish workflow

chore: improve README badges and harden publish workflow #28

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
types:
- checks_requested
env:
# Increase Node.js memory to prevent allocation errors
NODE_OPTIONS: --max-old-space-size=4096
# Ensure Yarn uses immutable installs
YARN_ENABLE_IMMUTABLE_INSTALLS: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Typecheck files
run: yarn typecheck
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Run unit tests
run: yarn test --maxWorkers=2 --coverage
build-library:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Build package
run: yarn prepare
build-android:
runs-on: ubuntu-latest
env:
TURBO_CACHE_DIR: .turbo/android
CI: 1
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Install example dependencies
run: cd example && yarn install --immutable
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Cache turborepo for Android
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-android-
- name: Check turborepo cache for Android
run: |
TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:android').cache.status")
if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
echo "turbo_cache_hit=1" >> $GITHUB_ENV
fi
- name: Install JDK
if: env.turbo_cache_hit != 1
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
distribution: 'zulu'
java-version: '17'
- 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
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: |
~/.gradle/wrapper
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build example for Android
env:
JAVA_OPTS: '-XX:MaxHeapSize=6g'
CI: 1
run: |
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
build-ios:
runs-on: macos-latest
env:
XCODE_VERSION: 16.4
TURBO_CACHE_DIR: .turbo/ios
CI: 1
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup
uses: ./.github/actions/setup
- name: Install example dependencies
run: cd example && yarn install --immutable
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Cache turborepo for iOS
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-turborepo-ios-
- name: Check turborepo cache for iOS
run: |
TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:ios').cache.status")
if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
echo "turbo_cache_hit=1" >> $GITHUB_ENV
fi
- name: Use appropriate Xcode version
if: env.turbo_cache_hit != 1
uses: maxim-lobanov/setup-xcode@60606e260d2fc5762a71e64e74b2174e8ea3c8bd # v1.6.0
with:
xcode-version: ${{ env.XCODE_VERSION }}
- name: Setup iOS Simulator
if: env.turbo_cache_hit != 1
run: |
# List available simulators
xcrun simctl list devices available
# Boot the default simulator
xcrun simctl boot "iPhone 15" || xcrun simctl boot "iPhone 14" || true
- name: Clean iOS build artifacts
if: env.turbo_cache_hit != 1
run: |
cd example
rm -rf ios
rm -rf .expo
yarn expo prebuild --clean --platform ios
- name: Fix ReactAppDependencyProvider issue
if: env.turbo_cache_hit != 1
run: |
cd example/ios
# Workaround for ReactAppDependencyProvider missing in Expo SDK 52 + React Native 0.76+
echo "Applying ReactAppDependencyProvider workaround..."
# Create a temporary Podfile with the fix
cp Podfile Podfile.backup
# Add the missing dependency after use_expo_modules
awk '/use_expo_modules/ { print; print " pod \"ReactAppDependencyProvider\", :path => \"../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios\""; next } 1' Podfile.backup > Podfile
pod install --repo-update
- name: Build example for iOS
env:
CI: 1
RCT_NEW_ARCH_ENABLED: 0
EXPO_USE_HERMES: true
run: |
yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"