Add 'nopan', 'nowheel' and 'nodrag' classes to Modal's overlay classes in order to always prevent react-flow to react to drag and pan actions in modals #1171
Workflow file for this run
This file contains hidden or 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: "🧪 Test: code" | |
| on: | |
| pull_request: | |
| paths: | |
| - "src/**.js" | |
| - "src/**.ts" | |
| - "src/**.tsx" | |
| - "index.ts" | |
| - "**.scss" | |
| - package.json | |
| - yarn.lock | |
| jobs: | |
| test-code: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Test using Node.js | |
| uses: actions/setup-node@main | |
| with: | |
| node-version: "18" | |
| - run: yarn install | |
| - run: yarn compile | |
| - run: yarn compile-scss | |
| - run: yarn test:ci |