fix: add surfaceButton style to fix glass surface tapping #278
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| ios-demo-build: | |
| runs-on: macos-26 | |
| defaults: | |
| run: | |
| working-directory: Demo | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby (Bundler) | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3" | |
| bundler-cache: true | |
| working-directory: Demo | |
| - name: Install xcresultparser | |
| run: brew install xcresultparser | |
| - name: Build (Demo) | |
| run: bundle exec fastlane ios build | |
| - name: Run Package Tests | |
| run: bundle exec fastlane ios package_tests | |
| - name: Convert coverage | |
| run: bundle exec fastlane coverage_xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ${{ github.workspace }}/coverage.xml | |
| root_dir: ${{ github.workspace }} | |
| verbose: true | |