Skip to content

feat: allow disabling prevent scroll #897

feat: allow disabling prevent scroll

feat: allow disabling prevent scroll #897

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
branches: [main]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: pnpm/[email protected]
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
env:
NODE_OPTIONS: "--max_old_space_size=4096"
- name: Test
run: pnpm test
env:
CI: true
NODE_OPTIONS: "--max_old_space_size=4096"