Merge branch 'refactor-tiny-react-reverse-insert-order' into refactor… #1896
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: ci | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: corepack enable | |
- run: pnpm i | |
- run: pnpm lint-check | |
- run: pnpm build | |
- run: pnpm tsc | |
- run: pnpm test | |
- run: npx typedoc | |
tiny-react: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: corepack enable | |
- run: pnpm i | |
- run: pnpm build | |
- run: npx playwright install chromium | |
- run: pnpm -C packages/tiny-react/examples/server test-e2e | |
- run: pnpm -C packages/tiny-react/examples/server build | |
- run: pnpm -C packages/tiny-react/examples/server test-e2e-preview |