1a195a96bd
- Merge origin/main into branch (resolve conflict in integrations_dashboard.html) - Add defensive JSON parsing with try/except for integration.config - Wrap tester() call in try/except to prevent 500 errors from bad config - Add i18n key integrations.connection_test_failed_fallback in en.json - Reference i18n key in template JS fallback message - Update SECURITY_AUDIT.md: add fix date (2026-03-23), update doc date - Remove accidental revert.sh file - Fix missing MagicMock/patch imports in test file - Add tests for invalid JSON config and tester exception error paths Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/daebb70e-059a-4601-8864-88eef49f99cf
39 lines
869 B
YAML
39 lines
869 B
YAML
name: Build and submit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- mobile/**
|
|
|
|
jobs:
|
|
build_android:
|
|
name: Build Android app
|
|
type: build
|
|
env:
|
|
# Suppress Node.js url.parse() deprecation warnings ([DEP0169]) emitted by
|
|
# EAS CLI when running on the build image's system Node 22+.
|
|
NODE_NO_WARNINGS: "1"
|
|
params:
|
|
platform: android
|
|
profile: production
|
|
|
|
build_ios:
|
|
name: Build iOS app
|
|
type: build
|
|
env:
|
|
# Suppress Node.js url.parse() deprecation warnings ([DEP0169]) emitted by
|
|
# EAS CLI when running on the build image's system Node 22+.
|
|
NODE_NO_WARNINGS: "1"
|
|
params:
|
|
platform: ios
|
|
profile: production
|
|
|
|
submit_ios:
|
|
name: Submit iOS to App Store Connect
|
|
needs: [build_ios]
|
|
type: submit
|
|
params:
|
|
build_id: ${{ needs.build_ios.outputs.build_id }}
|