A simple React Native Hello World app to test the Endor SCA scan workflow.
├── .github/workflows/endor-sca-scan.yml # GitHub Actions workflow
├── apps/mobile/ # React Native app
│ ├── android/ # Android configuration
│ ├── ios/ # iOS configuration
│ ├── App.tsx # Main app component
│ └── package.json # App dependencies
└── package.json # Root workspace configuration
- Simple Hello World React Native app
- Configured for Android and iOS builds
- pnpm workspace setup
- GitHub Actions workflow for Endor SCA scanning
This project is designed to test the Endor SCA scan workflow. The app itself is minimal and displays a simple "Hello World" message.
The GitHub Actions workflow will:
- Set up Node.js, Java, and Android SDK
- Install dependencies using pnpm
- Build the React Native app
- Run Endor Labs SCA scan
To run locally:
# Install dependencies
pnpm install
# Navigate to mobile app
cd apps/mobile
# Install app dependencies
pnpm install
# Run on Android
pnpm run android
# Run on iOS
pnpm run ios