website/.github/workflows/ci.yml
KittenTM 97cbc930a0
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 27m7s
initial commit
2026-05-12 21:05:12 +02:00

34 lines
579 B
YAML

name: ci
on: push
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck