Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Select Xcode 26.2
run: |
sudo xcode-select -s /Applications/Xcode_26.2.app
xcodebuild -version

- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Lint

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Build Android App

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test-ios.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Test iOS App

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
Expand All @@ -15,6 +11,11 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Select Xcode 26.2
run: |
sudo xcode-select -s /Applications/Xcode_26.2.app
xcodebuild -version

- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/test-web.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Test Website

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Typecheck

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/plugins/withAddPodDepsToTargets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ target "StatusWidget" do
use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks']
use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS']

pod "MMKVAppExtension"
pod "MMKVAppExtension", '2.4.0'
end
`;

Expand Down
Loading