WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

fix(slate-react): update slate-dom peer dependency to 0.119.0 #4372

fix(slate-react): update slate-dom peer dependency to 0.119.0

fix(slate-react): update slate-dom peer dependency to 0.119.0 #4372

Workflow file for this run

name: CI
on:
- push
- pull_request
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
ci:
name: ${{ matrix.command }}
# Pin the version to avoid dependency installation issues
runs-on: ubuntu-22.04
strategy:
matrix:
command:
- 'test'
- 'test:integration'
- 'lint:eslint'
- 'lint:prettier'
- 'lint:typescript'
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22.17
cache: yarn
- name: Run ${{ matrix.command }}
run: yarn && yarn build && yarn ${{ matrix.command }}
env:
CI: true
- name: Upload Playwright test results
if: ${{ !cancelled() && matrix.command == 'test:integration' }}
uses: actions/upload-artifact@v4
with:
name: test-results
path: test-results
retention-days: 30