fix: resize bug when absolute div in abslute div #401
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: 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 |