imrovement(flipper): allow to select next/prev line by shift arrows (#2918)

* fix: prevent flipper navigation when shift key is pressed

* rm logs

* feat: improve line selection with Shift + Up/Down

* fix lint action

* fix action

* upd
This commit is contained in:
Peter 2025-03-11 10:01:46 +03:00 committed by GitHub
commit cd65d8cd29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 56 additions and 10 deletions

View file

@ -9,15 +9,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v1
- name: Cache dependencies
uses: actions/cache@v4
with:
path: node_modules
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
${{ runner.os }}-node-
- run: yarn
- run: yarn lint