Merge branch 'feat/switch-to-flash-list' #85
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Install peer dependencies | |
| run: yarn add @react-native-firebase/app @react-native-firebase/firestore @react-native-firebase/storage | |
| - name: Lint files | |
| run: yarn lint | |
| - name: Typecheck files | |
| run: yarn typecheck | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Install peer dependencies | |
| run: yarn add @react-native-firebase/app @react-native-firebase/firestore @react-native-firebase/storage | |
| - name: Run unit tests | |
| run: yarn test --maxWorkers=2 --coverage | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Install peer dependencies | |
| run: yarn add @react-native-firebase/app @react-native-firebase/firestore @react-native-firebase/storage | |
| - name: Build package | |
| run: yarn prepack |