fix(core): avoid requiring ESNext.Disposable for model types #1845
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 10.7.0 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build | |
| run: pnpm build | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Tests | |
| run: pnpm test && pnpm test:devtools-ui | |
| - name: Test production build | |
| run: pnpm test:minify | |
| - name: Test react production build | |
| run: pnpm test:prod | |
| - name: Prepare runtime with React 16 | |
| working-directory: packages/react/runtime | |
| run: | | |
| pnpm i react@16 react-dom@16 react-router-dom@5 | |
| - name: Test React 16 | |
| working-directory: packages/react | |
| run: | | |
| pnpm i react@16 react-dom@16 react-router-dom@5 | |
| pnpm -w exec cross-env COVERAGE=true MINIFY=true vitest run packages/react |