diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f3af81f82a..eb888a6b31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -295,3 +295,28 @@ jobs: - name: Build richtext-slate run: pnpm turbo run build --filter=richtext-slate + + build-plugin-richtext-lexical: + runs-on: ubuntu-latest + needs: core-build + + steps: + - name: Use Node.js 18 + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + run_install: false + + - name: Restore build + uses: actions/cache@v3 + with: + path: ./* + key: ${{ github.sha }}-${{ github.run_number }} + + - name: Build richtext-lexical + run: pnpm turbo run build --filter=richtext-lexical