Add CI/CD pipelines for Lendair (iOS + web) [FRE-4690]

- iOS: swift lint, build verification, and test on PR
- Web: typecheck, vitest tests, build, and Vercel deployment (ready for web project)
- Package.swift: defines Lendair as buildable Swift package
- Test target: LendairTests with XCTest boilerplate

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-07 22:54:21 -04:00
parent 215f0c61ae
commit 3bf7235461
4 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import XCTest
class LendairTests: XCTestCase {
func testPackageLoads() throws {
XCTAssertTrue(true)
}
}