fix: Fixes status bar icons not visible on app launch in Android #8756
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: General PR | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '**/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| registry-url: 'https://registry.npmjs.org' | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Build | |
| run: yarn build:all | |
| - name: ESLint | |
| run: yarn lint | |
| - name: Build Android | |
| run: yarn android:bundle | |
| - name: Test | |
| run: yarn test |