Skip to content

Fallback to check for type of HTMLElement using duck typing #15

Fallback to check for type of HTMLElement using duck typing

Fallback to check for type of HTMLElement using duck typing #15

Workflow file for this run

name: "Vitest"
on: [pull_request]
jobs:
tests-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --frozen-lockfile --recursive
- name: Build NPM packages
run: pnpm run prerelease
- name: Run browser tests
run: cd packages/react-resizable-panels && pnpm run test:browser
- name: Run node tests
run: cd packages/react-resizable-panels && pnpm run test:node