Skip to content

feat: the office clock hangs on the wall and clicking it opens closing time #125

feat: the office clock hangs on the wall and clicking it opens closing time

feat: the office clock hangs on the wall and clicking it opens closing time #125

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
typecheck:
name: Typecheck
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck (node + web)
run: npm run typecheck
build:
name: Build
runs-on: macos-latest
# Build exercises the native node-pty rebuild; allowed to fail without blocking.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build