Validate Mobile App Deep Links in GitHub PRs with Automated Testing
Last edited 58 days ago
GitHub PR Deep-Link & Routing Validator (ExecuteCommand + GitHub Comment)
🚀 Quick-Start TL;DR
- Import the workflow JSON into n8n (Cloud or self-hosted).
- Create a GitHub Personal Access Token with
repo:public_repo(orrepo) scope and add it to n8n credentials. - Open the “CONFIG - Variables” node and tweak:
manifestPath– path to your deep-link manifest (AndroidManifest.xml, Info.plist, etc.).scriptPath– helper script that boots the emulator & checks each route.
- Enable the workflow. Every push to a PR branch triggers validation and posts a Markdown pass/fail matrix back to the PR.
What It Does
This workflow delivers an automated, CI-friendly smoke-test of every deep link defined in your mobile app. On each push to an open GitHub PR, it:
- Clones the PR branch.
- Runs a lightweight validation script (provided) that spins up an emulator/simulator, attempts to open each declared URI, and records OK/FAIL.
- Generates a Markdown table summarizing the results.
- Comments that table in the PR, letting reviewers spot broken schemes at a glance.
Who’s It For
- Mobile teams maintaining Android or iOS deep-link manifests.
- CI engineers who need a simple, language-agnostic check they can publish to each PR.
- OSS maintainers wanting a template-library-ready n8n recipe.
Requirements
Requirement
Notes
n8n Cloud / CE
Works everywhere; self-hosted users need Docker with Android / Xcode if validating on-runner.
GitHub Personal Access Token
Used for posting PR comments.
Emulator-capable runner
Local dev hardware or CI image that can run adb / xcrun simctl.
How It Works
- GitHub Trigger fires on
pull_request→synchronize(i.e., each push to the PR branch). - Set (
CONFIG - Variables) centralises repo URL, manifest path, script path, timeout, and comment mode. - ExecuteCommand clones the repo and calls the validation script.
- Function converts CLI CSV output into a Markdown table.
- GitHub node posts (or appends) the results as a comment on the PR.
How To Set Up
- Auth: In n8n, add a GitHub credential with your PAT named “GitHub Personal Access Token”.
- Import:
Settings → Import workflowand paste the JSON above. - Edit Config: Double-click CONFIG - Variables and change any default values.
- Validation Script: Commit
scripts/validate_deeplinks.shinto your repo (see sample below). - Enable the workflow. Push to any PR branch and watch the comment appear.
Sample validate_deeplinks.sh
#!/usr/bin/env bash
set -e
while getopts "m:" opt; do
case $opt in
m) MANIFEST="$OPTARG" ;;
esac
done
echo "⇨ Parsing deep links from $MANIFEST"
# rudimentary parser—replace with something smarter for XML/Plist
grep -oE 'http[s]?://[^" ]+' "$MANIFEST" | while read -r uri; do
if adb shell am start -W -a android.intent.action.VIEW -d "$uri" >/dev/null 2>&1; then
echo "$uri,OK"
else
echo "$uri,FAIL"
fi
done
How To Customise
- Multiple manifests: duplicate the Execute-Command step or extend the script to accept a list.
- Replace-latest comment: switch
commentModetoreplace-latestand update the GitHub node to search for the newest bot comment before editing. - Status checks instead of comments: call the GitHub → “Create Commit Status” endpoint.
Add-Ons
Add-On
Idea
Multi-platform sweep
Loop over Android + iOS manifests and aggregate results.
Slack/Teams alert
Push failures into your chat of choice via Incoming-Webhook node.
Parallel device grid
Trigger multiple emulators (API 19 → 34) to catch OS-specific issues.
Use Case Examples
- Ensure new features don’t break existing URI schemes before merge.
- Catch mis-typed hosts/paths introduced by junior devs.
- Baseline check on dependency bumps (e.g., upgrading Navigation libraries).
- Validate white-label builds that override path segments.
- Automated QA gate that blocks merge if any link fails.
(…and many more!)
Troubleshooting Guide
Issue
Possible Cause
Solution
Workflow hangs at “Execute – Validate”
Emulator image isn’t installed
Pre-install SDK & start the emulator in a startup script
PR comment missing
Token lacks repo scope
Regenerate PAT with proper scopes
All links marked FAIL
Manifest path incorrect
Update manifestPath in CONFIG
Command node hits timeout
Huge manifest / slow CI
Increase timeoutSecs in CONFIG
Need a Hand? 🤝
Stuck or want to extend this with multi-platform coverage? WeblineIndia’s automation experts can help.
Drop us a note to fine-tune or scale out your n8n workflows — fast.
You may also like
New to n8n?
Need help building new n8n workflows? Process automation for you or your company will save you time and money, and it's completely free!





