fix(image): Prevent default drag ghost on zoomed images #48
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: Lint via ESLint and Prettier | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy-github-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Lint via ESLint | |
| run: yarn eslint:lint | |
| - name: Lint via Prettier | |
| run: yarn format:lint |