Skip to content

feat(editor): Add an option to prevent scrolling past the edge of the image (#129). #264

feat(editor): Add an option to prevent scrolling past the edge of the image (#129).

feat(editor): Add an option to prevent scrolling past the edge of the image (#129). #264

name: Run Tests on PR
on:
pull_request:
permissions:
contents: read
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare yarn
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Test imports
run: yarn run dist-test
- name: Run tests
run: yarn run test
- name: Lint
run: yarn run lint-ci
- name: Check formatting
run: bash scripts/check-formatting-ci.sh
- name: Build example app
run: cd docs/demo && yarn run build