wip: wait for idle during build #2257
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: | |
branches: | |
- main | |
pull_request: | |
# copied from vitest | |
# https://github.com/vitest-dev/vitest/blob/e4e939ba2ab48c67ee14b82ec957fc9a8a52756c/.github/workflows/ci.yml#L12-L14 | |
concurrency: | |
group: ci-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
build: false | |
playwright: false | |
- run: pnpm lint-check | |
- run: pnpm build | |
- run: pnpm tsc | |
- run: pnpm test | |
test-react-server: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm -C packages/react-server/examples/basic test-e2e | |
- run: pnpm -C packages/react-server/examples/basic build | |
- run: pnpm -C packages/react-server/examples/basic test-e2e-preview | |
- run: pnpm -C packages/react-server test-e2e | |
test-vite-node-miniflare: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm -C packages/vite-node-miniflare/examples/basic test-e2e | |
- run: pnpm -C packages/vite-node-miniflare/examples/react test-e2e | |
- run: pnpm -C packages/vite-node-miniflare/examples/react-router test-e2e | |
- run: pnpm -C packages/vite-node-miniflare/examples/remix test-e2e | |
test-vite-glob-routes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm -C packages/vite-glob-routes/examples/demo test-e2e | |
- run: pnpm -C packages/vite-glob-routes/examples/demo build | |
- run: pnpm -C packages/vite-glob-routes/examples/demo test-e2e-preview | |
- run: pnpm -C packages/vite-glob-routes/examples/ssr test-e2e | |
- run: pnpm -C packages/vite-glob-routes/examples/ssr build | |
- run: pnpm -C packages/vite-glob-routes/examples/ssr test-e2e-preview | |
- run: pnpm -C packages/vite-glob-routes/examples/spa test-e2e | |
- run: pnpm -C packages/vite-glob-routes/examples/spa build | |
- run: pnpm -C packages/vite-glob-routes/examples/spa test-e2e-preview |