Skip to content

CI: 19acef0531db3616fb070b7dc89bc7eb1f90ab66 #24

CI: 19acef0531db3616fb070b7dc89bc7eb1f90ab66

CI: 19acef0531db3616fb070b7dc89bc7eb1f90ab66 #24

Workflow file for this run

name: CI
run-name: >-
${{
github.event_name == 'push' &&
format('CI: {0}', github.event.head_commit.message) ||
format('CI: {0}', github.sha)
}}
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Lint, typecheck, test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm fmt:check
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test