Skip to content

fix: bottom sheet keyboard handling on android devices #62

fix: bottom sheet keyboard handling on android devices

fix: bottom sheet keyboard handling on android devices #62

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up repository
uses: actions/checkout@v3
- name: Setting up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Obtain Yarn Cache directory
id: yarn-cache-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Installing dependencies
run: yarn install --immutable
- name: Running Prettier Format
run: yarn format
- name: Running Linter
run: yarn lint