Merge pull request #1265 from firebase/mc/12 #531
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Email Auth | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'FirebaseAuthUI/**' | |
- 'FirebaseAuthUI.podspec' | |
- '.github/workflows/emailauth.yml' | |
- 'FirebaseEmailAuthUI/**' | |
- 'test.sh' | |
- 'FirebaseEmailAuthUI.podspec' | |
- 'Package.swift' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'FirebaseAuthUI/**' | |
- 'FirebaseAuthUI.podspec' | |
- '.github/workflows/emailauth.yml' | |
- 'FirebaseEmailAuthUI/**' | |
- 'test.sh' | |
- 'FirebaseEmailAuthUI.podspec' | |
- 'Package.swift' | |
workflow_dispatch: | |
jobs: | |
xcodebuild: | |
name: xcodebuild | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Select Xcode version | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_16.3.app/Contents/Developer | |
- name: Setup | |
run: | | |
cd FirebaseEmailAuthUI | |
gem install bundler | |
bundle install | |
gem install xcpretty | |
bundle exec pod install --repo-update | |
- name: Build | |
run: | | |
./test.sh FirebaseEmailAuthUI | |
spm: | |
name: spm | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Select Xcode version | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_16.3.app/Contents/Developer | |
- name: List | |
run: | | |
xcodebuild -list | |
- name: Build | |
run: | | |
xcodebuild -scheme FirebaseEmailAuthUI -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=latest,name=iPhone 16 Pro' | |
pod: | |
name: pod lib lint | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Select Xcode version | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_16.3.app/Contents/Developer | |
- name: Setup | |
run: gem install bundler; bundle install | |
- name: Build | |
# Allow warnings for deprecated `updateEmail:completion:` API. | |
run: | | |
bundle exec pod lib lint FirebaseEmailAuthUI.podspec \ | |
--include-podspecs=FirebaseAuthUI.podspec \ | |
--allow-warnings |