Skip to content

0.1.1

0.1.1 #15

Workflow file for this run

name: CI
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: pnpm/action-setup@08c4be7e2e672a47d11bd04269e27e5f3e8529cb # v6.0.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24
- run: pnpm install
- name: Lint
run: pnpm run lint
- name: Format check
run: pnpm oxfmt --check
- name: Type check
run: pnpm tsc
- name: Test
run: pnpm test