Skip to content

fix(ui): remove blocking hiccup when exporting pdf #266

fix(ui): remove blocking hiccup when exporting pdf

fix(ui): remove blocking hiccup when exporting pdf #266

Workflow file for this run

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