Skip to content

"Do not allow dragging downwards to close if the first snap point is the active one and dismissible prop is set to false" had previously also prevented dragging upwards. #61

"Do not allow dragging downwards to close if the first snap point is the active one and dismissible prop is set to false" had previously also prevented dragging upwards.

"Do not allow dragging downwards to close if the first snap point is the active one and dismissible prop is set to false" had previously also prevented dragging upwards. #61

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
pull_request:
paths:
- 'packages/**'
jobs:
tests:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install -g [email protected]
- run: pnpm install --no-frozen-lockfile
- run: pnpm build:package
- run: npx playwright install --with-deps
- run: pnpm test || exit 1
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playground/playwright-report/
retention-days: 30