chore: enable rivet compute docs #3811
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: frontend | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/frontend.yml | |
| - frontend/** | |
| - engine/sdks/typescript/** | |
| - rivetkit-typescript/** | |
| - website/** | |
| concurrency: | |
| group: frontend-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dashboard-quality-check: | |
| name: Dashboard / Quality Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: biomejs/setup-biome@v2 | |
| with: | |
| version: latest | |
| - run: biome check ./frontend --formatter-enabled=true --linter-enabled=false --assist-enabled=false --reporter=github | |
| rivetkit-quality-check: | |
| name: RivetKit / Quality Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: biomejs/setup-biome@v2 | |
| with: | |
| version: latest | |
| - run: biome check ./rivetkit-typescript --formatter-enabled=true --linter-enabled=false --assist-enabled=false --reporter=github | |
| # website-quality-check: | |
| # name: Website / Quality Check | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - uses: biomejs/setup-biome@v2 | |
| # with: | |
| # version: latest | |
| # - run: biome check ./website --reporter=github | |
| dashboard-type-check: | |
| name: Dashboard / Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: 'true' | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - uses: actions/cache@v4 | |
| with: | |
| path: .turbo | |
| key: ${{ runner.os }}-turbo-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-turbo- | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm build --filter='./frontend' | |
| env: | |
| NODE_OPTIONS: '--max-old-space-size=8192' | |
| - run: pnpm check-types | |
| working-directory: ./frontend | |
| rivetkit-type-check: | |
| name: RivetKit / Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: 'true' | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - uses: actions/cache@v4 | |
| with: | |
| path: .turbo | |
| key: ${{ runner.os }}-turbo-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-turbo- | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm exec turbo run build --filter='./rivetkit-typescript/packages/*' | |
| - run: pnpm exec turbo run check-types --filter='./rivetkit-typescript/packages/*' | |
| # website-type-check: | |
| # name: Website / Type Check | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # with: | |
| # lfs: 'true' | |
| # - uses: pnpm/action-setup@v4 | |
| # - uses: actions/setup-node@v4 | |
| # with: | |
| # node-version-file: .node-version | |
| # cache: pnpm | |
| # - uses: actions/cache@v4 | |
| # with: | |
| # path: .turbo | |
| # key: ${{ runner.os }}-turbo-${{ github.sha }} | |
| # restore-keys: | | |
| # ${{ runner.os }}-turbo- | |
| # - run: pnpm install --frozen-lockfile | |
| # - run: pnpm build | |
| # - run: pnpm check-types | |
| # working-directory: ./website | |