feat: add preventRightClick
and preventWheelClick
props for draggable
#114
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: Storybook Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: restore lerna | |
uses: actions/cache@v3 | |
id: cache-lerna | |
with: | |
path: | | |
**/node_modules | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache-lerna.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile | |
- name: Run Storybook tests | |
run: yarn test:ci | |
working-directory: ./packages/react-moveable | |
- name: Run Original Storybok | |
if: ${{ failure() }} | |
run: yarn test:fail-ci | |
working-directory: ./packages/react-moveable | |
- name: Archive Failed Artifact | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: failed snapshot | |
path: packages/react-moveable/__snapshots__ | |