Fix resizer on absolute drag mode when the parent is positioned ( position: relative | absolute | .... ) #553
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: GrapesJS Qualty Checks | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
branches: [dev] | |
jobs: | |
quality-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-project | |
- name: TS Check | |
run: pnpm ts:check | |
- name: Lint | |
run: pnpm lint | |
- name: Format Check | |
run: pnpm format:check | |
- name: Docs | |
run: pnpm docs:api |