Skip to content

Fix: onKeySwitchToPrevPanel() should switch instead of only activate #16

Fix: onKeySwitchToPrevPanel() should switch instead of only activate

Fix: onKeySwitchToPrevPanel() should switch instead of only activate #16

Workflow file for this run

name: pull-request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review, review_requested]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Lint
run: |
npm install
npm run lint
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Test
run: |
npm install
npx vitest related --run $(git diff --name-only --relative HEAD^1 HEAD)