Skip to content
Draft
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
10 changes: 10 additions & 0 deletions .github/workflows/quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
- name: Generate Android Project
run: npm run build -- --platform=android --entryUrl="https://www.example.com"

- name: Build Android App
run: |
cd output/Example
npx cap build android

build_ios_project:
name: Build iOS Project
runs-on: macos-latest
Expand All @@ -60,6 +65,11 @@ jobs:
- name: Generate iOS Project
run: npm run build -- --platform=ios --entryUrl="https://www.example.com"

- name: Build iOS App
run: |
cd output/Example
npx cap build ios

licensing:
name: License Headers
runs-on: ubuntu-latest
Expand Down
Loading