feat: Add game replay and games listing pages #17
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 - client | |
| on: | |
| push: | |
| paths: | |
| - "client/**" | |
| - ".github/workflows/ci-client.yml" | |
| pull_request: | |
| paths: | |
| - "client/**" | |
| - ".github/workflows/ci-client.yml" | |
| workflow_dispatch: | |
| jobs: | |
| client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Enable Corepack (pnpm) | |
| run: corepack enable | |
| - name: client install | |
| run: pnpm -C client install --frozen-lockfile | |
| - name: client lint | |
| run: pnpm -C client lint | |
| - name: client build | |
| run: pnpm -C client build |