Prepared as a quick‑reference guide for developers, QA engineers, and release managers who need to understand, set‑up, and maintain the NTRMAN – QA‑APK workflow. 1. What Is NTRMAN – QA‑APK? | Component | Description | |-----------|-------------| | NTRMAN | A lightweight N ode‑ T ype‑ R eact MAN ager – a CLI/GUI tool that orchestrates the build, test, and packaging phases for React‑Native (or other cross‑platform) mobile projects. | | QA‑APK | A Q uality‑ A ssured APK – the signed Android package generated after a full suite of automated tests (unit, integration, UI, and performance) has passed. It is the artifact that gets promoted to beta or production tracks. | | Goal | To guarantee that every APK that leaves the pipeline meets a predefined quality gate, reducing “works on my machine” bugs and speeding up release cycles. |
- name: Install NTRMAN run: npm i -g ntrman NTRMAN - QA-APK
on: push: branches: [ main, develop ] pull_request: Prepared as a quick‑reference guide for developers, QA
- name: Install Java & Android SDK run: | apk add --no-cache openjdk11 git bash wget -qO- https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip | \ bsdtar -xvf- -C $HOME/android-sdk --strip-components=1 yes | $HOME/android-sdk/cmdline-tools/bin/sdkmanager "platform-tools" "platforms;android-34" "build-tools;34.0.0" | | Goal | To guarantee that every
jobs: build-and-test: runs-on: ubuntu-latest container: image: node:18-alpine steps: - uses: actions/checkout@v4