"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. #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |