[DEV-19138] Fix incompatible onDOMBeforeInput
definitions
#958
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: Build Storybook | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 20.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Environment | |
uses: prezly/setup-github-actions@v1 | |
with: | |
node: ${{ matrix.node-version }} | |
pnpm: "8.11.0" | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Build Project | |
run: pnpm build:dev | |
- name: Build Storybook | |
run: pnpm storybook:build | |
working-directory: packages/slate-editor |