Skip to content

feat: Add game replay and games listing pages #17

feat: Add game replay and games listing pages

feat: Add game replay and games listing pages #17

Workflow file for this run

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