Skip to content

Fixed typing on PixelfedBottomSheetModal #43

Fixed typing on PixelfedBottomSheetModal

Fixed typing on PixelfedBottomSheetModal #43

Workflow file for this run

name: iOS build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
with:
lfs: true
- name: πŸ— Enable corepack
run: corepack enable
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: βŽ— Restore build cache
uses: actions/cache@v4
with:
path: |
node_modules
ios
key: build-ios-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
build-ios-${{ runner.os }}-
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸš€ Build app
run: |
sudo xcode-select --switch /Applications/Xcode_16.1.app/Contents/Developer
npx expo prebuild --platform ios
cd ios
set -o pipefail && xcodebuild -workspace pixelfed.xcworkspace -scheme Pixelfed -destination "platform=iOS Simulator,name=iPhone SE (3rd generation)" | xcbeautify --renderer github-actions