Skip to content

feat(playtest): add standalone multi-action preview #42

feat(playtest): add standalone multi-action preview

feat(playtest): add standalone multi-action preview #42

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: frontend-ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
frontend-checks:
name: Frontend checks
runs-on: ubuntu-latest
timeout-minutes: 15
env:
CI: 'true'
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Build
run: npm run build