Skip to content

feat(demo-car-circuit): full visual polish — chase cam, track, HUD, m… #8

feat(demo-car-circuit): full visual polish — chase cam, track, HUD, m…

feat(demo-car-circuit): full visual polish — chase cam, track, HUD, m… #8

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, dev]
push:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build all packages
run: pnpm -r run build
- name: Run all tests
run: pnpm -r run test