added keyboard.dismiss to the bottomSheets #88
This file contains 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: Codebase linter | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
if: ${{ github.actor != 'Mabibot' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.MABIBOT_GITHUB_ACTION_EXPO_MANAGED_TEMPLATE }} | |
- run: npm install | |
- run: npm run lint | |
- run: npm run prettier | |
- run: git config user.name Mabibot | |
- run: git config user.email [email protected] | |
- run: git add . | |
continue-on-error: true | |
- run: git commit -m "Lint codebase" | |
continue-on-error: true | |
- run: git push |